#include #include #include int main(void) { const char shelly[] = ""; // Your shellcode printf("Length: %lu\n", strlen(shelly)); int (*launch)(); launch = (int (*)()) shelly; (int)(*launch)(); return 0; }