What's new

Closed Virus using cmd and antivirus

Status
Not open for further replies.

PHC - ChocoMilky

Honorary Poster
Joined
Sep 22, 2017
Posts
143
Reaction
319
Points
181
Age
25
Hi Guys,

This tutorial is to teach you how häçkers 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

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 Bloatwâréz %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.

STEP 2: CREATING THE ANTI-VIRUS



So now we have identified the effect of the virus, let's now create the antivirus.

An antivirus, identifies and removes (quarantines) the infection. We start by writing the following code;

echo off
color 0a
msg *Removing Bloatwâréz Virus
del /s *virus.txt
echo Virus Successfully Removed
pause
Go ahead and test the virus - bloatware.cmd and once you have created the viruses, use the antibloatware.cmd to remove the files. Download AntiVirus file and use it to your pleasure.

PS: This is Prank Virus

Mc D Luffy
 
Status
Not open for further replies.

Similar threads

Back
Top