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

14 lines
No EOL
243 B
C

/*
* 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));
}