home *** CD-ROM | disk | FTP | other *** search
/ Hackers Toolkit v2.0 / Hackers_Toolkit_v2.0.iso / HTML / archive / Trojans / bof.exe / bof.bat next >
DOS Batch File  |  1998-10-28  |  2KB  |  43 lines

  1. rem -- This is a sample batch file for use with BOF.
  2. rem -- If you instruct BOF to run it, it will pass
  3. rem -- 5 different command line parameters into the
  4. rem -- batch file, as follows:
  5. rem --
  6. rem --        %1 - DATE
  7. rem --        %2 - TIME
  8. rem --        %3 - IP ADDRESS
  9. rem --        %4 - KEY
  10. rem --        %5 - RANDOM 8 LETTER STRING
  11. rem --
  12. rem -- The %5 parameter is just a string of 8 random
  13. rem -- letters (eg. iowehfjs).  This is so you
  14. rem -- you can create additional log files of any
  15. rem -- applications that you run in this BAT file.
  16. rem -- For best results, create a folder called "logs"
  17. rem -- in the main BOF folder.
  18. rem --
  19. rem -- Then you can start adding lines like the following
  20. rem -- to this BAT file:
  21. rem --
  22. rem -- ping %3 > logs\ping_%5.log
  23. rem -- tracert %3>logs\trace_%5.log
  24. rem -- nslookup %3>dns_%5.log
  25. rem --
  26. rem -- If you unrem the above "ping" line, the program "ping"
  27. rem -- will be run, using the IP address that BOF gave
  28. rem -- the BAT file.  Also, the output of the "ping"
  29. rem -- program will be logged to the file logs\ping_<random string>.log
  30. rem --
  31. rem -- It should also be noted that the random string that is
  32. rem -- passed into this BAT file is logged in the MAIN bof.log
  33. rem -- which means you can easily search though that file first,
  34. rem -- and then branch off to more detailed logs which were created
  35. rem -- by this batch file! :)
  36. rem --
  37. rem -- If this all seems a bit too complicated for you, unrem the line
  38. rem -- that follows:
  39. rem --
  40. rem -- echo %1 %2 %3 %4 %5>test_%5.log
  41. rem --
  42. rem -- and then set BOF to run this BAT file, and send a BO client packet
  43. rem -- to BOF.  A file should be created.  Work out the rest from there! :)