how to make a netcat shell a proper bash shell code example
Example 1: upgrade shell tty
stty raw -echo
$ export SHELL=bash
$ export TERM=xterm256-color
$ stty rows 38 columns 116
Example 2: upgrade shell tty
# 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>