Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

// Egg Hunter Demo - Payload on stack | |
// Compile with: | |
// gcc -z execstack -fno-stack-protector egg_hunter_stack_demo.c -o egg_stack_demo | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
unsigned char egghunter[] = \ | |
"\xbb\xeb\x02\xeb\xfc\x53\x48\xc1\xe3\x20\x48\x0b\x1c\x24\x48\x31\xd2\x52\xb6\x10\x5f\x57\x5e\x6a\x15\x58\x0f\x05\x3c\xf2\x75\x05\x48\x01\xd7\xeb\xf2\x52\x59\x83\xe9\x08\x48\x3b\x1f\x74\x0b\x48\xff\xc7\xe2\xf6\x48\x83\xc7\x08\xeb\xdd\xff\xe7"; | |
main() | |
{ | |
unsigned char payload[] = \ | |
"\xeb\x02\xeb\xfc\xeb\x02\xeb\xfc\x48\x31\xc9\x48\xf7\xe1\x50\x5f\xff\xc0\x48\x83\xc2\x08\x68\x4f\x4b\x20\x0a\x48\x89\xe6\x0f\x05\x6a\x3c\x58\x0f\x05"; | |
printf("Triggering egg hunter\n"); | |
int (*ret)() = (int(*)())egghunter; | |
ret(); | |
} | |