TTY SHELL
# In reverse shell | |
$ python -c 'import pty; pty.spawn("/bin/bash")' | |
Ctrl-Z | |
# In Kali | |
$ stty raw -echo | |
$ fg | |
# In reverse shell | |
$ reset | |
$ export SHELL=bash | |
$ export TERM=xterm-256color | |
$ stty rows <num> columns <cols> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment