Python

  • 交互式shell

nc反弹shell后提升为交互式shell,最好先执行一下whereis python,确定是执行python还是python3.X 此处以python为例。

python -c 'import pty; pty.spawn("/bin/bash")' 
  • 起http服务

测试中为了下载文件,可在808端口起web服务

python -m "http.server" 808