4 matches found
pyshell2bin
pyshell2bin 如果你在处理漏洞利用和 shellcode,那你已经知道 shellcode 是什么以及如何处理它。有时它会随 C、Perl、Python 等语言的漏洞利用代码一起出现,通常看起来像这样: root@kitploit: payload = b"xbfxabxd0x9ax5bxdaxc7xd9x74x24xf4x5ax2bxc9" + "xb1x45x83xc2x04x31x7ax11x03x7ax11xe2x5ex2c" + "x72xd2xa0xcdx83x85x29x28xb2x97x4dx38xe7x27" + ... 但有时候你需要这些 shellcode...
bluffy
Bluffy 将 Shellcode 转换为 ✨ 不同的 ✨ 格式! Bluffy 是一个用于实验的工具,通过将 shellcode 格式化为看起来像真实数据格式的形式,来(静态)绕过杀毒软件。 一些概念验证工具,例如 0xBoku 的 NinjaUUIDRunner 和 ChoiSG 的 UuidShellcodeExec,启发了 Bluffy 的初始概念。 目前已实现: 1. UUID 2. CLSID 3. SVG 4. CSS 5. CSV 帮助 root@kitploit: $ python3 bluffy.py -h ⣇⣿⠘⣿⣿⣿⡿⡿⣟⣟⢟⢟⢝⠵⡝⣿⡿⢂⣼⣿⣷⣌⠩⡫⡻⣝⠹⢿⣿...
shellcode2assembly
ShellcodeToAssembly 在 shellcodetoasm.py 中用你的 shellcode 替换。 字节序类型为小端。 root@kitploit: shellcode = '' 安装 git clone https://github.com/blacknbunny/ShellcodeToAssembly.git && cd ShellcodeToAssembly/ && pip2 install -r requirements.txt && python2 shellcodetoasm.py 模块手动安装 pip install -r requirements.txt...
Linux/x86 Custom Shellcode ASCII And-Sub Encoder
/ Title: Linux/x86 - Custom Shellcode ASCII And-Sub Encoder Date: 29.03.2021 Author: Xenofon Vassilakopoulos github : https://github.com/xen0vas/ASCII-AND-SUB-Encoder gcc -m32 sub.c -o sub Usage : ./sub -s \x41\xff\x41\x41 -b \x0a\x0d\x2f\x3a\x3f\x40\x80\x81\x82 / include include include include...