0% found this document useful (0 votes)
35 views

LV

This userscript bypasses linkvertise redirects by making an XMLHttpRequest to a URL with the current page URL appended. For linkvertise redirects containing 'krnl' in the URL, it waits 15 seconds before redirecting to bypass detection, otherwise it immediately redirects.

Uploaded by

Eugeniu Turcan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views

LV

This userscript bypasses linkvertise redirects by making an XMLHttpRequest to a URL with the current page URL appended. For linkvertise redirects containing 'krnl' in the URL, it waits 15 seconds before redirecting to bypass detection, otherwise it immediately redirects.

Uploaded by

Eugeniu Turcan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

// ==UserScript==

// @name [Working] krnl and linkvertise bypasser


// @namespace http://tampermonkey.net/
// @version 5.4
// @description just waits 15 seconds for krnl and works fine with the other stuff
2 (it waits no time for other stuff) :)
// @author You
// @match *://*.linkvertise.com/*
// @match *://*.linkvertise.net/*
// @match *://*.link-to.net/*
// @exclude *://publisher.linkvertise.com/*
// @exclude *://linkvertise.com
// @exclude *://linkvertise.com/search*
// @exclude *://blog.linkvertise.com
// @exclude *://blog.linkvertise.com/*
// @exclude https://linkvertise.com/assets/vendor/thinksuggest.html
// @exclude https://linkvertise.com/
// @grant GM.xmlHttpRequest
// @icon https://www.google.com/s2/favicons?domain=linkvertise.com
// @grant none
// ==/UserScript==

(async function () {
'use strict';
var url = "https://discord-bot-enjy.herokuapp.com/?" + window.location.href;
var oReq = new XMLHttpRequest();
var location = window.location.href;

if (location.includes('linkvertise.com/48193/')) {
console.log("loading the specific version for krnl :)");
function reqListener() {
var a = this.responseText;
var b = JSON.parse(a);
setTimeout(function () {
window.location = b.destination;
}, 15100);
}
oReq.addEventListener("load", reqListener);
oReq.open("GET", url);
oReq.send();
}
else {

function reqListener() {
var a = this.responseText;
var b = JSON.parse(a);
window.location = b.destination;
}
oReq.addEventListener("load", reqListener);
oReq.open("GET", url);
oReq.send();
}
})();

You might also like