Updated Slides, Code, Readme

This commit is contained in:
dash
2017-05-30 20:35:13 +02:00
parent 522f0475ee
commit 7464e36185
4 changed files with 20 additions and 19 deletions

View File

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