Files
Shellcode-Lab/x86_32/0x1_SyscallBasics/Example_Code/skeleton_oldschool.c
2017-05-30 20:35:13 +02:00

13 lines
172 B
C

#include <stdio.h>
unsigned char shellcode[] = "";
int main()
{
printf("Shellcode Length: %ld\n", sizeof(shellcode) - 1);
int (*ret)() = (int(*)())shellcode;
ret();
}