Linux/x86 - exit(0) / exit(1) Shellcode (3/4 bytes)
Author: TheWorm
type:
platform: linux_x86
port: 3.0
date_added: 2018-01-16
date_updated: 2018-01-16
verified: 0
codes:
tags:
aliases:
screenshot_url:
application_url:
#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;
}