Tuesday, November 22, 2011

How to use Google for Hacking.PART:4 [[Crash a Computer using Flash and Google]]

Open up a new flash document.Open up the Actions panel for the stage of the first frame. If it’s in Actionscript 2, write the following:

onEnterFrame = function () { getURL(“http://www.google.com”, “_blank”);}

Or if it’s actionscript 3 write the following:
function
openGoogle(e:Event)
:void {navigateToURL(“http://www.google.com”, “_blank”);
}

stage.addEventListener
(Event.ENTER_FRAME, openGoogle)
;Press Control-Enter when you’re ready to crash your computer.What this does is repeatedly open up new tabs of Google. But it opens so many Google tabs every second that after maybe 20-30 seconds your computer will barely be able to respond to you mouse clicks or even mouse movements.Usually, any attempt to stop it will result in processing overload and cause the computer to freeze. The only real way to stop this is to force-quit BOTH flash.exe and iexplorer.exe. Some teachers may know enough to do this,but might accidentally close explorer.exe

No comments:

Post a Comment