Advertisement
Guest User

bof

a guest
Feb 4th, 2015
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. void evilfunction(char* input){
  4.     char buffer[1000];
  5.     strcpy(buffer, input); // Vulnerable function.
  6. }
  7.  
  8. int main(int argc, char** argv){
  9.     evilfunction(argv[1]);
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement