Skip to content

Instantly share code, notes, and snippets.

@alseambusher
Created September 20, 2013 00:18
Show Gist options
  • Save alseambusher/6631667 to your computer and use it in GitHub Desktop.
Save alseambusher/6631667 to your computer and use it in GitHub Desktop.
simple buffer overflow in c
#include<stdio.h>
void bad_func(){
printf("Hacked!!!\n");
}
int main(int argc,char** argv){
char buffer[100];
strcpy(buffer,argv[1]);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment