summaryrefslogtreecommitdiffstats
path: root/ismitmlink/cs.js
diff options
context:
space:
mode:
authormia21 <mia21@nsa.govt>2019-03-21 04:48:21 +0000
committermia21 <mia21@nsa.govt>2019-03-21 04:48:21 +0000
commitcae10fcf94e3655fb4e6c3973c5732fcf70d14fa (patch)
treec1b77f0801fd9b3b48ceb288918833856fecb593 /ismitmlink/cs.js
parent848d54fa856f0973eb195c3dba93a378c208a0ae (diff)
downloadcloudflare-tor-cae10fcf94e3655fb4e6c3973c5732fcf70d14fa.tar
cloudflare-tor-cae10fcf94e3655fb4e6c3973c5732fcf70d14fa.tar.gz
cloudflare-tor-cae10fcf94e3655fb4e6c3973c5732fcf70d14fa.tar.lz
cloudflare-tor-cae10fcf94e3655fb4e6c3973c5732fcf70d14fa.tar.xz
cloudflare-tor-cae10fcf94e3655fb4e6c3973c5732fcf70d14fa.zip
Upload files to 'ismitmlink'
Diffstat (limited to 'ismitmlink/cs.js')
-rw-r--r--ismitmlink/cs.js12
1 files changed, 7 insertions, 5 deletions
diff --git a/ismitmlink/cs.js b/ismitmlink/cs.js
index b28b81ef..c274e3b6 100644
--- a/ismitmlink/cs.js
+++ b/ismitmlink/cs.js
@@ -1,5 +1,5 @@
if (document.body) {
- if (!['searxes.danwin1210.me', 'searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion', 'searxes.cyb'].includes(location.hostname)) {
+ if (!['searxes.danwin1210.me', 'searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion', 'searxes.cyb', 'addons.mozilla.org'].includes(location.hostname)) {
let cs = (function () {
let s = document.createElement('style');
document.head.appendChild(s);
@@ -7,12 +7,14 @@ if (document.body) {
})();
if (cs) {
cs.insertRule("a[data-mitm]{text-decoration-line:line-through !important;text-decoration-color:red !important;text-decoration-style:double !important}", 0);
- cs.insertRule("a[data-mitm]::after{content:'[MITM!]';font-weight:bold}", 1);
+ cs.insertRule("a[data-mitm]::before{content:'[MITM!]';font-weight:bold !important;color:red !important}", 1);
+ cs.insertRule("a[data-mitm]:hover::before{content:'[Privacy Risk!!]'}", 2);
+ cs.insertRule("a[data-mitm]:hover{color:red !important}", 3);
}
- let asked = [location.hostname, 'searxes.danwin1210.me', 'searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion', 'searxes.cyb'];
+ let asked = ['searxes.danwin1210.me', 'searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion', 'searxes.cyb'];
document.querySelectorAll("a[href^='http://']:not([data-mitm]),a[href^='https://']:not([data-mitm]),a[href^='//']:not([data-mitm])").forEach(a => {
let aF = (new URL(a.href)).hostname;
- if (!/^(.*)\.(onion|i2p|invalid|test|local|localhost|([0-9]{1,3}))$/.test(aF) && !asked.includes(aF)) {
+ if (!/^(.*)\.(onion|i2p|invalid|test|local|localhost|([0-9]{1,3})|bbs|chan|cyb|dyn|geek|gopher|indy|libre|neo|null|o|oss|oz|parody|pirate|bit|lib|coin|emc|bazar|fur)$/.test(aF) && !asked.includes(aF)) {
asked.push(aF);
browser.runtime.sendMessage(aF);
}
@@ -22,7 +24,7 @@ if (document.body) {
if (request[1]) {
document.querySelectorAll("a[href^='http://" + request[0] + "/']:not([data-mitm]),a[href^='https://" + request[0] + "/']:not([data-mitm]),a[href^='//" + request[0] + "/']:not([data-mitm])").forEach(a => {
a.dataset.mitm = 1;
- a.title = 'MITM!';
+ a.title = 'DANGER! DANGER! MITM!';
});
}
}