2
1
Fork 0
mayvaneday/checktor.js

28 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-12-04 23:00:12 +01:00
/*
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");
2021-12-18 03:41:35 +01:00
let ly = text.includes("onion.ly");
let moe = text.includes("onion.moe");
2022-05-09 02:05:36 +02:00
let web = text.includes("darknet2web.com");
let web2 = text.includes("darknet2web.info");
2022-05-09 02:05:36 +02:00
let gate = text.includes("torgateway.com");
2022-06-02 00:20:39 +02:00
let i2p = text.includes("i2p.mk16.de");
let i2p2 = text.includes("i2phides.me");
2022-06-20 03:03:21 +02:00
let nl = text.includes("tor2web.nl");
2023-02-16 15:42:44 +01:00
let re = text.includes("onion.re");
let foundation = text.includes("onion.foundation");
let india = text.includes("torproxy.in");
2023-09-20 16:40:18 +02:00
let nz = text.includes("onion.nz");
let autos = text.includes("onion.autos");
if ((pet === true) || (nl === true) || (autos == true) || (i2p === true) || (ws === true) || (gate === true) || (search === true) || (foundation === true) || (web2 === true) || (i2p2 === true) || (re === true) || (cyber === true) || (ly === true) || (web === true) || (nz === true) || (india === true ) || (moe === true)) {
2021-12-04 23:00:12 +01:00
window.location.replace("https://theannoyingsite.com");
}