Skip to content

Instantly share code, notes, and snippets.

@k3170makan
Created September 12, 2018 07:00
Show Gist options
  • Save k3170makan/da07b370c55da75c966573dd3da3da09 to your computer and use it in GitHub Desktop.
Save k3170makan/da07b370c55da75c966573dd3da3da09 to your computer and use it in GitHub Desktop.
An example elf for dissecting
#include <stdio.h>
void never_call(void){
printf("[*] wow how did you manage to call this?\n");
return;
}
int main(int argc, char **argv){
printf("[*] you ran this binary!\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment