Skip to content

Instantly share code, notes, and snippets.

@claudijd
Created July 13, 2013 03:46
Show Gist options
  • Save claudijd/5989336 to your computer and use it in GitHub Desktop.
Save claudijd/5989336 to your computer and use it in GitHub Desktop.
example buf overflow
#include <stdio.h>
int echo() {
char buf[200];
gets(buf);
puts(buf);
}
int main() {
printf("Please enter a string:");
echo();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment