Skip to content

Instantly share code, notes, and snippets.

@aedrax
Created October 17, 2020 00:37
Show Gist options
  • Save aedrax/68312ef539ce556ccfaa0e3c645bb3a0 to your computer and use it in GitHub Desktop.
Save aedrax/68312ef539ce556ccfaa0e3c645bb3a0 to your computer and use it in GitHub Desktop.
// gcc -g -fno-stack-protector main.c
#include <stdio.h>
void sneaky() {
puts("you win!\n");
}
void foo() {
char buffer[10];
gets(buffer);
puts(buffer);
}
int main() {
foo();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment