Annoying JavaScript Virus

The JavaScirpt viruses will not delete nor change any files, their usage is to either scare the user, to close down the browser, or to force the user to close the browser by pressing Alt + Ctrl + Del.  For this annoying virus, you will be forced to close down the window by pressing Alt + Ctrl + Del. However, I designed a demo where you can just jump out of the trouble by clicking "Cancel" in any of the alert windows. In the real script, you will not be able to do so.

 


 

Cut and paste the source code of the above script here (Read  How to Cut N Paste for help)
 

<!----------Cut---------->
<HTML>
<HEAD>
<TITLE>Annoying JavaScript Virus</TITLE>
<SCRIPT>
<!--
//    Script Editor:   Howard Chen
//    Browser Compatible for the script: IE 2.0 or Higher
//                                       Netscape 2.0 or Higher
//    This script is free as long as you keep its credits
function virus()
{
var a = true
while (a == true)
     {
      alert("Sorry, you will never be able to get rid of this alert window unless you shut down the browser.")
     }
}
//-->
</SCRIPT>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<FORM>
<Input type=Button Value="Launch Annoying Virus" onclick="virus()">
</FORM>
</BODY>
</HTML>
<!----------End---------->
 

IMPORTANT: The scripts provided in this page are free as long as you keep the credits in the code.  E-mail me or use Script Rebuild Service for additional help about Cut N Paste or to ask for a script that is just for you.

Post Your Script Home