Advertisement
tthtlc

strcpy analysis of u-boot: exploitable?

Mar 5th, 2014
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2. ./tools/easylogo/easylogo.c:
  3. strcpy (inputfile, argv[optind]);
  4. strcpy (varname, argv[optind + 1]);
  5. strcpy (outputfile, argv[optind + 2]);
  6.  
  7. ./common/cmd_nvedit.c:
  8. strcpy(message + pos, argv[i]);
  9.  
  10. ./common/cmd_bootm.c:
  11. strcpy(dest, argv[i]);
  12.  
  13. ./common/cmd_pxe.c:
  14. strcpy(bootm_argv[2], getenv("ramdisk_addr_r"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement