mirror of
https://github.com/VoidSec/Exploit-Development
synced 2026-06-08 12:50:18 +00:00
11 lines
180 B
C
11 lines
180 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
/*test shellcode*/
|
|
char code[] = "";
|
|
|
|
int main(int argc, char ** argv) {
|
|
int( * func)();
|
|
func = (int( * )()) code;
|
|
(int)( * func)();
|
|
} |