| [color=rgba(0, 0, 0, 0.9)]packer 是一款针对cs生成的shellcode快速打包成exe的一款工具, 内置了53种加载方式提供选择, 针对shellcode只是简单的进行了异或的处理, 并没有添加过多的免杀处理, 所以这只是本项目只是一个快速打包器, 如果刚好生成的exe是免杀的, 那么恭喜你 !
   
   
   
 直接下载本项目, 解压 运行 go mod init packer 下载打包需要的依赖 
 go get github.com/gonutz/ide go get github.com/google/uuid go get github.com/mitchellh/go-ps go get golang.org/x/sys 参数说明 
 packer.exe -h 
 |||     P A C K E R     |||     0.1.0 来自北半球的一款打包器  author:derian 
 packer 
 Usage:   packer.exe [flags] 
 Flags: INPUT:    -f, -file string  input a cs .c/.bin file    -m, -mode string  shellcode running mode    -k, -key string   -w,-s,-w -s compilation parameters 
 MODE:    -list  list shellcode running modes 
 OUTPUT:    -o, -output string  output a .exe file (default "output.exe") [color=rgba(0, 0, 0, 0.9)]查看支持的加载方式 [color=rgba(0, 0, 0, 0.9)]packer.exe -list 指定加载shellcode加载方式 packer.exe -f jsq.bin -m zhizhen -k "-w" -o z1.exe 
 
 
 |