This commit is contained in:
VoidSec
2019-04-11 11:43:13 +02:00
parent efd101d2d2
commit 8b7d405fd0
4 changed files with 252 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#include <stdio.h>
#include <stdlib.h>
/*test shellcode*/
char code[] = "";
int main(int argc, char ** argv) {
int( * func)();
func = (int( * )()) code;
(int)( * func)();
}