simplify adclicker bypass

This commit is contained in:
Amm0ni4 2024-03-13 02:53:55 +01:00
parent dfc21a02de
commit 24a8d7085a
2 changed files with 6 additions and 8 deletions

View file

@ -2131,10 +2131,9 @@
// AdClicker (used in animesgd.net and many others)
if (/(adclicker.(io|info)|discoveryultrasecure.com)\/url\/\#/.test(url)){
var decodedUrl = decodeURIComponent(atob(atob(atob(url.split('/url/#')[1]))));
var urlParam = getParam(decodedUrl,'url');
if (decodedUrl.includes('&url=')) {redirect(decodeURIComponent(decodedUrl.split('&url=')[1]))
} else if (urlParam) { redirect(decodeURIComponent(urlParam))
} else {redirect(decodedUrl)}
if (decodedUrl.includes('&url=')) {decodedUrl = decodedUrl.split('&')[1];}
var urlParam = new URLSearchParams(decodedUrl).get('url');
if (urlParam) {redirect(urlParam);}
}
})();

View file

@ -404,10 +404,9 @@
// AdClicker (used in animesgd.net and many others)
if (/(adclicker.(io|info)|discoveryultrasecure.com)\/url\/\#/.test(url)){
var decodedUrl = decodeURIComponent(atob(atob(atob(url.split('/url/#')[1]))));
var urlParam = getParam(decodedUrl,'url');
if (decodedUrl.includes('&url=')) {redirect(decodeURIComponent(decodedUrl.split('&url=')[1]))
} else if (urlParam) { redirect(decodeURIComponent(urlParam))
} else {redirect(decodedUrl)}
if (decodedUrl.includes('&url=')) {decodedUrl = decodedUrl.split('&')[1];}
var urlParam = new URLSearchParams(decodedUrl).get('url');
if (urlParam) {redirect(urlParam);}
}
})();