代码搜索:Shellcode

找到约 263 项符合「Shellcode」的源代码

代码结果 263
www.eeworm.com/read/332113/3401485

c shellcode_asm.c

/* shellcode_asm.c * * 《网络渗透技术》演示程序 * 作者:san, alert7, eyas, watercloud * * shellcode演示 */ int main () { __asm__ (" mov $0x0,%edx push %edx push
www.eeworm.com/read/332113/3401488

c shellcode_fcntl.c

/* shellcode_fcntl.c * * 《网络渗透技术》演示程序 * 作者:san, alert7, eyas, watercloud * * Use fcntl to find socket shellcode for Linux x86 * Idea from scz */ unsigned char sh_Buff[1024]; unsigned int sh_Le
www.eeworm.com/read/332113/3401500

c shellcode2.c

/* shellcode2.c * * 《网络渗透技术》演示程序 * 作者:san, alert7, eyas, watercloud * * Win32堆溢出攻击模版2-使用系统版本无关的函数指针 */ #include #include #include #define PROC_BEGIN __as
www.eeworm.com/read/332113/3401501

c shellcode1.c

/* shellcode1.c * * 《网络渗透技术》演示程序 * 作者:san, alert7, eyas, watercloud * * Win32堆溢出攻击模版1-精确定位shellcode */ #include #include #include #define PROC_BEGIN __as
www.eeworm.com/read/332113/3401526

c shellcode_fcntl.c

/* shellcode_fcntl.c * * 《网络渗透技术》演示程序 * 作者:san, alert7, eyas, watercloud * * Use fcntl to find socket shellcode for Linux x86 */ unsigned char sh_Buff[1024]; unsigned int sh_Len; unsi
www.eeworm.com/read/332113/3401545

c shellcode_amazing.c

/* shellcode_amazing.c * * san@nsfocus.com * 2004.11.25 */ unsigned char sh_Buff[1024]; unsigned int sh_Len; unsigned char decode1[] = /* objdump -j .text -S decode | more 8048433:
www.eeworm.com/read/283598/9002378

txt 通用shellcode深入剖析.txt

通用ShellCode深入剖析 -------------------------------------------------------------------------------- 第八军团 时间:2004-2-22 13:01:28 前言: 在网上关于ShellCode编写技术的文章已经非常之多,什么理由让我再写这种技术文 章呢?本文是我上一篇溢
www.eeworm.com/read/159132/10692194

c shellcode_asm_test.c

#include #include char shellcode[] = { 0x8B, 0xE5, //MOV ESP,EBP 0x55, //PUSH EBP 0x8B, 0xEC, //MOV EBP,ESP 0x33, 0xFF, //XOR EDI,EDI 0x57,
www.eeworm.com/read/159132/10692205

c shellcode_hook_recv.c

/* shellcode_hook_recv.c * * 《网络渗透技术》演示程序 * 作者:san, alert7, eyas, watercloud * * Hook系统的recv调用的shellcode演示 */ #define PROC_BEGIN __asm _emit 0x90 __asm _emit 0x90 __asm _emit 0x90 __asm _em
www.eeworm.com/read/159132/10692219

c shellcode_port_bind.c

/* shellcode_port_bind.c * * 《网络渗透技术》演示程序 * 作者:san, alert7, eyas, watercloud * * 监听端口的shellcode演示 */ #include #include #include #define PROC_BEGIN __a