#include "shellcode.h" #include #include void load_shellcode_and_return(){ printf("Shellcode is at: %p\n", shellcode); char string_spot[128]; strcpy(string_spot, shellcode); int a[1]; a[36] = (int)&shellcode; } int main(){ load_shellcode_and_return(); }