summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryourfriend <yourfriend@noreply.codeberg.org>2019-08-08 03:21:52 +0200
committeryourfriend <yourfriend@noreply.codeberg.org>2019-08-08 03:21:52 +0200
commitfc8af9e153865c99cd88f268ebd953b1094f4a38 (patch)
tree19d54dc90115309dd5bff6efdb99c783a2dcbe85
parent2cebef3ecfd95521afda7726e2b5399c3f1e18f5 (diff)
downloadcloudflare-tor-fc8af9e153865c99cd88f268ebd953b1094f4a38.tar
cloudflare-tor-fc8af9e153865c99cd88f268ebd953b1094f4a38.tar.gz
cloudflare-tor-fc8af9e153865c99cd88f268ebd953b1094f4a38.tar.lz
cloudflare-tor-fc8af9e153865c99cd88f268ebd953b1094f4a38.tar.xz
cloudflare-tor-fc8af9e153865c99cd88f268ebd953b1094f4a38.zip
Upload files to 'addon_firefox/ismitmlink'
-rw-r--r--addon_firefox/ismitmlink/cs.js44
-rw-r--r--addon_firefox/ismitmlink/manifest.json2
2 files changed, 23 insertions, 23 deletions
diff --git a/addon_firefox/ismitmlink/cs.js b/addon_firefox/ismitmlink/cs.js
index 03ebcda0..ae4aeae8 100644
--- a/addon_firefox/ismitmlink/cs.js
+++ b/addon_firefox/ismitmlink/cs.js
@@ -5,36 +5,36 @@ if (document.body && !['searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lw
return s.sheet;
})();
if (cs) {
- cs.insertRule("a[data-mitm]{cursor:not-allowed !important;text-decoration-line:line-through !important;text-decoration-color:red !important;text-decoration-style:double !important}", 0);
- cs.insertRule("a[data-mitm]::before{content:'[\\26A0]';font-weight:bold !important;color:red !important;display:inline-block !important}", 1);
- cs.insertRule("a[data-mitm]:hover::before{content:'[\\26A1]'}", 2);
- cs.insertRule("a[data-mitm]:hover{color:red !important}", 3);
- cs.insertRule("img[data-mitm]{cursor:not-allowed !important;border:2px red dotted !important}", 4);
- cs.insertRule("img[data-mitm]:hover{transform:scaleY(-1);filter:sepia(70%)}", 5);
+ cs.insertRule("a[data-mitm=y]{cursor:not-allowed !important;text-decoration-line:line-through !important;text-decoration-color:red !important;text-decoration-style:double !important}", 0);
+ cs.insertRule("a[data-mitm=y]::before{content:'[\\26A0]';font-weight:bold !important;color:red !important;display:inline-block !important}", 1);
+ cs.insertRule("a[data-mitm=y]:hover::before{content:'[\\26A1]'}", 2);
+ cs.insertRule("a[data-mitm=y]:hover{color:red !important}", 3);
+ cs.insertRule("img[data-mitm=y]{cursor:not-allowed !important;border:2px red dotted !important}", 4);
+ cs.insertRule("img[data-mitm=y]:hover{filter:sepia(20%)}", 5);
}
- let asked = ['searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion', 'searxes.eu.org', 'api.searxes.eu.org', 'addons.mozilla.org', 'addons.thunderbird.net', 'web.archive.org'];
- 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 (!/^(.*)\.(danwin1210\.me|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);
- }
- });
- document.querySelectorAll("img[src^='http://']:not([data-mitm]),img[src^='https://']:not([data-mitm]),img[src^='//']:not([data-mitm])").forEach(a => {
- let aF = (new URL(a.src)).hostname;
+
+ let asked = ['', 'searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion', 'searxes.eu.org', 'api.searxes.eu.org', 'addons.mozilla.org', 'addons.thunderbird.net', 'web.archive.org'];
+ document.querySelectorAll('a[href]:not([data-mitm]),img[src]:not([data-mitm])').forEach(a => {
+ let aF = (a.tagName == 'A' ? (new URL(a.href)).hostname : (new URL(a.src)).hostname) || '';
if (!/^(.*)\.(danwin1210\.me|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);
}
});
+
browser.runtime.onMessage.addListener((request, sender, sendResponse) => {
if (request.length == 2) {
- 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]),img[src^='http://" + request[0] + "/']:not([data-mitm]),img[src^='https://" + request[0] + "/']:not([data-mitm]),img[src^='//" + request[0] + "/']:not([data-mitm])").forEach(a => {
- a.dataset.mitm = 1;
- a.title = 'MITM!';
- });
- }
+ document.querySelectorAll('a[href]:not([data-mitm]),img[src]:not([data-mitm])').forEach(a => {
+ let aF = (a.tagName == 'A' ? (new URL(a.href)).hostname : (new URL(a.src)).hostname) || '';
+ if (aF == request[0]) {
+ if (request[1]) {
+ a.dataset.mitm = 'y';
+ a.title = 'MITM!';
+ } else {
+ a.dataset.mitm = 'n';
+ }
+ }
+ });
}
sendResponse(null);
});
diff --git a/addon_firefox/ismitmlink/manifest.json b/addon_firefox/ismitmlink/manifest.json
index 9e5939f4..b1a1a8e6 100644
--- a/addon_firefox/ismitmlink/manifest.json
+++ b/addon_firefox/ismitmlink/manifest.json
@@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Are links vulnerable to MITM attack?",
"description": "Scan FQDN using Searxes' API",
- "version": "1.0.11",
+ "version": "1.0.12",
"homepage_url": "https://codeberg.org/crimeflare/cloudflare-tor",
"author": "Maslin Bossé",
"permissions": [