代码搜索:Shellcode
找到约 263 项符合「Shellcode」的源代码
代码结果 263
www.eeworm.com/read/159132/10692232
c shellcode_asm_full.c
#include
#include
void main()
{
__asm {
/*LoadLibrary("msvcrt.dll");*/
push ebp
mov ebp,esp
xor eax,eax
www.eeworm.com/read/159132/10692236
c shellcode_port_reuse.c
/* shellcode_port_reuse.c
*
* 《网络渗透技术》演示程序
* 作者:san, alert7, eyas, watercloud
*
* 端口复用的shellcode演示
*/
#define PROC_BEGIN __asm _emit 0x90 __asm _emit 0x90 __asm _emit 0x90 __asm _emit 0x90\
www.eeworm.com/read/159132/10692238
c shellcode_match_string.c
/* shellcode_match_string.c
*
* 《网络渗透技术》演示程序
* 作者:san, alert7, eyas, watercloud
*
* 字串匹配查找socket的shellcode演示
*/
#define PROC_BEGIN __asm _emit 0x90 __asm _emit 0x90 __asm _emit 0x90 __asm _
www.eeworm.com/read/159132/10692241
c shellcode_asm2.c
#include
#include
void main()
{
LoadLibrary("msvcrt.dll");
__asm {
mov esp,ebp ;把ebp的内容赋值给esp
push ebp ;保存ebp,
www.eeworm.com/read/159132/10692335
c shellcode_asm_fix.c
/* shellcode_asm_fix.c
*
* 《网络渗透技术》演示程序
* 作者:san, alert7, eyas, watercloud
*
* shellcode演示
*/
int main ()
{
__asm__
("
xor %edx,%edx
push %edx
pu
www.eeworm.com/read/159132/10692388
c shellcode_ioctl_fionread.c
/* shellcode_ioctl_FIONREAD.c
*
* 《网络渗透技术》演示程序
* 作者:san, alert7, eyas, watercloud
*
* use ioctl to find socket shellcode for Linux x86
* Idea from eyas
*/
unsigned char sh_Buff[1024];
unsigned
www.eeworm.com/read/231891/14216742