Create Harmless Fake Virus

Written by Unknown 0 comments Posted in:


I though of explain you to create simple fake virus that I have learned. It is very simple and any one can try for Windows operating systems. All you have to do is just create one executable file and one shortcut.


Create a executable file:
Step 1:
Copy and paste following code lines into Notepad

 

@echo off
color 0a
echo Deleting Critical System Files...
echo del *.*
ping -n 4 127.0.0.1>nul
echo Deletion Successful!
ping -n 2 127.0.0.1>nul
echo:
echo:
echo Deleting Root Partition...
ping -n 2 127.0.0.1>nul
echo delTree %SYSTEMROOT%
ping -n 4 127.0.0.1>nul
echo Deletion Successful!
ping -n 2 127.0.0.1>nul
echo:
echo:
echo Creating Directory aXon...
echo cd C:\Documents and Settings\All Users\Start Menu\Programs\
ping -n 1 127.0.0.1>nul
echo md aXon
ping -n 3 127.0.0.1>nul
echo Directory Creation Successful!
echo:
echo:
echo Execution Attempt 1...
ping -n 3 127.0.0.1>nul
echo start aXon.exe
ping -n 3 127.0.0.1>nul
echo Virus Executed!
echo:
echo:
ping -n 2 127.0.0.1>nul
echo Disabling Windows Firewall...
ping -n 2 127.0.0.1>nul
echo Killing all processes...
ping -n 2 127.0.0.1>nul
echo Allowing virus to boot from startup...
ping -n 2 127.0.0.1>nul
echo:
echo:
echo Virus has been executed successfully!
ping -n 2 127.0.0.1>nul
shutdown -s -t 120 -c "Your computer has committed suicide. Have a nice day."


Step 2:

Give file name as "yourfilename".bat and you need to change ".txt" to "All files" in the file type drop-down menu.

Step 3:
Save the file and close the Notepad.

Now you have created executable virus file and need to create shortcut file to navigate to file.


Creating shortcut:
Step 1:
Right click on the desktop and go over to "new" then click "short cut".
Step 2:
For the location of the short cut chose our Virus. And click next
Step 3:
Give the shortcut a name like "Internet Explore.exe" or "Critical Windows-Update.exe" and click on "Finish"
Step 4:
Right click on the shortcut you have just made and chose "properties". Now click on the "chose icon" button and scroll through the list of icons.
Step 5:
Decide for one of the icons that fits well to the name, chose it by clicking on it and hit OK twice.


I'm not going to explain code lines one by one here. You just run it and see. To abort Shutdown countdown just go to start=> run=> type "shutdown -a" and press enter. Remember that if you use a shutdown-countdown you should have enough time to abort the countdown and don't try this on server machine! You can place virus any hidden directory you like and place shortcut on desktop. Once you get experience you know what you can do with this virus. Have Fun !

0 comments:

Post a Comment