Linux/x86 - exit(0) Shellcode (6 bytes)
EDB-ID:
36908
Size:
6 bytes
Author:
Febriyanto Nugroho
Type:
shellcode
Platform:
Linux_x86
Published:
2015-05-04
/*
* linux/x86 exit(0) - 6 bytes
* Febriyanto Nugroho
*/
#include <stdio.h>
char shellcode[] = "\xf7\xf0"
"\xcd\x80"
"\xeb\xfa";
int main(int argc, char **argv) {
asm("jmp %0;" : "=m" (shellcode));
}