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

@@ -2,9 +2,9 @@
unsigned char shellcode[] = "";
main()
int main()
{
printf("Shellcode Length: %d\n", sizeof(shellcode) - 1);
printf("Shellcode Length: %ld\n", sizeof(shellcode) - 1);
int (*ret)() = (int(*)())shellcode;
ret();
}