Skip to content

Instantly share code, notes, and snippets.

@7h3h4ckv157
Created November 12, 2021 04:08
Show Gist options
  • Save 7h3h4ckv157/4c2e33680ff7e9cea6afd2717d06cd37 to your computer and use it in GitHub Desktop.
Save 7h3h4ckv157/4c2e33680ff7e9cea6afd2717d06cd37 to your computer and use it in GitHub Desktop.
ret2libc.c
#include <stdio.h>
void overflow() {
char buffer[64];
printf("try your best\n");
gets(buffer);
}
int main() {
overflow();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment