1
0
Fork 0

PRIDE MONTH CAPTAIN FALCON

This commit is contained in:
Lethe Beltane 2022-06-02 20:54:28 -05:00
parent 394197d8f6
commit 43a3b69902
Signed by: lethe
GPG key ID: 21A3DA3DE29CB63C
13 changed files with 50 additions and 0 deletions

20
checktor.js Executable file
View file

@ -0,0 +1,20 @@
/*
Tor2web blocking script
written by Vane Vander <https://mayvaneday.org>
released under MIT License
*/
let text = window.location.href;
let pet = text.includes("onion.pet");
let ws = text.includes("onion.ws");
let search = text.includes("onionsearchengine.com");
let cyber = text.includes("cyber-hub.pw");
let ly = text.includes("onion.ly");
let moe = text.includes("onion.moe");
let web = text.includes("darknet2web.com");
let gate = text.includes("torgateway.com");
let i2p = text.includes("i2p.mk16.de");
let i2p2 = text.includes("i2phides.me");
if ((pet === true) || (i2p === true ) || (ws === true) || (gate === true) || (search === true) || (i2p2 === true) || (cyber === true) || (ly === true) || (web === true) || (moe === true)) {
window.location.replace("https://theannoyingsite.com");
}