Ad Code

Ticker

6/recent/ticker-posts

How to make a harmless virus | Next level virus 💻| With auto Shutdown function

      Hey guys! In this post, I will share that 'How I made a Harmless multifunctional virus'! Isn't crazy!! In the previous post, I have shown you that 'How to make a harmless virus'. But it was actually a pop-up box that shows a message repeatedly. Or you can say it is part-2 of it. This virus shows multi pop-up box which shows some messages like 'Your PC is at risk', 'Your computer is hacked by Vector X', 'Your PC needs a restart!', etc. And we will also add a function that when all the pop-up boxes end! Then it will open 'cmd (Command Prompt)' and automatically shut down the computer after 60 seconds. But need not worry! We just need to type 'shutdown -a' and the shutdown will be prevented or abort. These all things will give this virus a real virus look! Your friends can totally get worried 😯! This virus is 101% harmless. So, let's see the process of creating it.


DISCLAIMER:- This is not a harmful virus. This is not at all related to Hacking stuff. So let's continue...



Here is the image at the 👆 top, and the video below 👇

[youtube https://www.youtube.com/watch?v=3ZSdP3-dwtw]



Process of it

So, first, open 'Notepad' or any code editor you want, then Paste the code given below and save the file as 'Virus.vbs'

NOTE:- Remember to save the file with '.vbs' extension only. 


Explanation

As you can see in the code below, there it is written that ' X=MsgBox("etc") ' many times. We used this here to show many pop-up boxes with different messages and different sounds and symbols to play. As you can see, I have given 11 times ' X=MsgBox("etc") ' to display different messages and make someone really scared!! After that, I have created a variable as 'shellObj' which is carrying a 'WScript.Shell' function which is inbuild in the VBS programming language. This function helps to open many things present on the computer and to do a lot of work.  So we have to use this here to open cmd 'Command Prompt' and then we have to write the same thing with ' shellObj.sendkeys "shutdown -s -f -t 60" and then it will send the key 'enter' means it will automatically open the cmd and type the shutdown function then press the 'enter' key to execute the code. Isn't is so cool!


VIRUS code:-
X=MsgBox("Error while opening this file, do you want us to fix the problem?",4+64,"Error (0x6437SG73)")
X=MsgBox("Unable to fix the issue. Do you want us to scan your Computer?",3+48,"Windows Security Alert!")
X=MsgBox("Threat has been detected. Do you want to delete this program?",3+16,"Threat Found! Action needed"
X=MsgBox("Unable to delete this threat",1+64,"Critical Error"
X=MsgBox("Virus is Activated",2+16,"Virus Alert"
X=MsgBox("Deleting System Files..",2+16,"File Deletion"
X=MsgBox("Copying your credentials",2+48,"Virus Alert")
X=MsgBox("Please wait. Uploading your files to hack server. Do you want to stop it?",4+64,"Transfering files....")
X=MsgBox("Can not stop.Access is denied. File transfer Completed",1+16,"Completed")   
X=MsgBox("Your computer is hacked by vector x",1+68,"Error (0x64GBHSG73)"
X=MsgBox("Your PC ran into a problem and needs to restart :(",1+48,"Firewall Alert!"

set shellobj = CreateObject("WScript.Shell")
shellobj.run "cmd"

wscript.sleep 2000
shellobj.sendkeys "shutdown -s -f -t 60"
shellobj.sendkeys "{ENTER}" {codeBox}



So, that's all for today's post hope you like it! If you like it then please like the video and if you are new to my channel then please SUBSCRIBE my channel. To keep me motivated please help me by increasing my subscribes because I daily find amazing content for you. 😊

Keep Visiting!!

                         Thank you!

 

via GIPHY

(adsbygoogle = window.adsbygoogle || []).push({});

Post a Comment

0 Comments

Ad Code