Advertisement
Guest User

YOU HAVE NO POWER HERE

a guest
May 27th, 2023
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.             var isadb = true;
  2.             var tryCount = 0;
  3.             var minimalUserResponseInMiliseconds = 200;
  4.             function check() {
  5.                 console.clear();
  6.                 before = new Date().getTime();
  7.                 debugger ;after = new Date().getTime();
  8.                 if (after - before > minimalUserResponseInMiliseconds) {
  9.                     document.write(" Dont open Developer Tools. ");
  10.                     self.location.replace(window.location.protocol + window.location.href.substring(window.location.protocol.length));
  11.                 } else {
  12.                     before = null;
  13.                     after = null;
  14.                     delete before;
  15.                     delete after;
  16.                 }
  17.                 setTimeout(check, 100);
  18.             }
  19.             check();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement