Upgrading Shells
A list of methods to upgrade shells to fully interactive TTYs!
Python PTY Upgrade
python -c 'import pty; pty.spawn("/bin/bash")'export TERM=xtermstty raw -echo
fg# Attack box - gives row and column length
stty -a
# Shell
stty rows $ROW_LENGTH
stty cols $COL_LENGTHSocat Upgrade
RLWrap Upgrade
Last updated