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");
|
2022-02-28 04:46:12 +01:00
|
|
|
let moe = text.includes("onion.moe");
|
|
|
|
if ((pet === true) || (ws === true) || (search === true) || (cyber === true) || (ly === true) || (moe === true)) {
|
2021-12-04 23:00:12 +01:00
|
|
|
window.location.replace("https://theannoyingsite.com");
|
|
|
|
}
|