0x01 工具介绍
一种使用C++的 shellcode 注入技术,它尝试使用 XOR 加密和UUID字符串绕过 Windows Defender。
0x02 安装与使用
1、Shellcode 生成
`首先,生成二进制格式的有效负载(使用CobaltStrike或msfvenom)例如,在 中msfvenom,您可以这样做(我使用的有效负载是为了说明目的,您可以使用任何您想要的有效负载):`
`msfvenom -p windows/messagebox -f raw -o shellcode.bin`
`UUID然后使用 Python3 脚本将 shellcode(二进制/原始格式)转换为字符串格式bin_to_uuid.py:`
`./bin_to_uuid.py -p shellcode.bin > uuid.txt`
`xor使用 Python3 脚本加密UUID字符串, .uuid.txtxor_encryptor.py`
`./xor_encryptor.py uuid.txt > xor_crypted_out.txt`
`Copy the C-style array in the file, xor_crypted_out.txt, and paste it in the C++ file as an array of unsigned char i.e. unsigned char payload[]{your_output_from_xor_crypted_out.txt}`
2、概念验证(POC)
3、静态分析
0x03 项目链接下载
https://github.com/Bl4ckM1rror/FUD-UUID-Shellcode
如有侵权,请联系删除
推荐阅读
查看更多精彩内容,还请关注 橘猫学安全:
每日坚持学习与分享,觉得文章对你有帮助可在底部给点个“ 再看”
