For the complete documentation index, see llms.txt. This page is also available as Markdown.

Upgrade shell

Upgrade crappy reverse shells when using zsh.

python3 -c 'import pty;pty.spawn("/bin/bash")';
# or 
python -c 'import pty;pty.spawn("/bin/bash")';

ctrl + z
stty columns $(tput cols) rows $(tput lines);stty raw -echo;fg

Last updated