Files
Shellcode-Lab/x86_32/0x1_SyscallBasics/Example_Code/skeleton_oldstyle.c
2017-03-09 21:18:26 +01:00

13 lines
167 B
C

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