Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <stdlib.h>
  2. #include <unistd.h>
  3. #include <stdio.h>
  4. #include <string.h>
  5.  
  6. void win()
  7. {
  8. printf("code flow successfully changed\n");
  9. }
  10.  
  11. int main(int argc, char **argv)
  12. {
  13. char buffer[64];
  14.  
  15. gets(buffer);
  16. }
  17.