exploit-db-mirror/shellcodes/linux_x86/43650.c
Offensive Security b4c96a5864 DB: 2021-09-03
28807 changes to exploits/shellcodes
2021-09-03 20:19:21 +00:00

17 lines
No EOL
378 B
C

#include <stdio.h>
const char shellcode[]=
"\x40" // inc %eax
// "\x43" // inc %ebx
"\xcd\x80"; // int $0x80
int main()
{
printf ("\n[+] Yet conditional (%eax==0) Linux/x86 exit(0) 3 bytes or
exit(1) 4 bytes"
"\n[+] Date: 18/06/2009"
"\n[+] Author: TheWorm"
"\n\n[+] Shellcode Size: %d bytes\n\n", sizeof(shellcode)-1);
(*(void (*)()) shellcode)();
return 0;
}