1
0
Fork 0
mayvaneday/checktor.js

15 lines
451 B
JavaScript
Raw Normal View History

2021-12-04 22:00:12 +00: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");
if ((pet === true) || (ws === true) || (search === true) || (cyber === true)) {
window.location.replace("https://theannoyingsite.com");
}