summaryrefslogtreecommitdiffstats
path: root/ismitmlink
diff options
context:
space:
mode:
authorJeff Cliff <jeffrey.cliff@gmail.com>2019-05-05 15:35:18 -0400
committerJeff Cliff <jeffrey.cliff@gmail.com>2019-05-05 15:35:18 -0400
commit21b9f07586f3cdaccdf659954878f8c27aa3f8e2 (patch)
treece3ccb596fa7cc3fbe9ce29c9ca7e66a55156f6f /ismitmlink
parent9ac04f516b348a48bbcca04e20f74d495c5df52c (diff)
downloadcloudflare-tor-21b9f07586f3cdaccdf659954878f8c27aa3f8e2.tar
cloudflare-tor-21b9f07586f3cdaccdf659954878f8c27aa3f8e2.tar.gz
cloudflare-tor-21b9f07586f3cdaccdf659954878f8c27aa3f8e2.tar.lz
cloudflare-tor-21b9f07586f3cdaccdf659954878f8c27aa3f8e2.tar.xz
cloudflare-tor-21b9f07586f3cdaccdf659954878f8c27aa3f8e2.zip
see https://notabug.org/themusicgod1/cloudflare-tor/pulls/154#issuecomment-13978
Diffstat (limited to 'ismitmlink')
-rw-r--r--ismitmlink/LICENSE.txt21
-rw-r--r--ismitmlink/README.md5
-rw-r--r--ismitmlink/bg.js77
-rw-r--r--ismitmlink/cs.js32
-rw-r--r--ismitmlink/icons/32.pngbin2029 -> 0 bytes
-rw-r--r--ismitmlink/manifest.json38
6 files changed, 0 insertions, 173 deletions
diff --git a/ismitmlink/LICENSE.txt b/ismitmlink/LICENSE.txt
deleted file mode 100644
index 8178a565..00000000
--- a/ismitmlink/LICENSE.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License
-
-Copyright (c) 2019 Maslin Bossé
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
diff --git a/ismitmlink/README.md b/ismitmlink/README.md
deleted file mode 100644
index a85762d8..00000000
--- a/ismitmlink/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-This is a source code of Maslin Bossé's "*Are links vulnerable to MITM?*".
-
-PRs are welcome.
-
-AMO: https://addons.mozilla.org/en-US/firefox/addon/are-links-vulnerable-to-mitm/ \ No newline at end of file
diff --git a/ismitmlink/bg.js b/ismitmlink/bg.js
deleted file mode 100644
index 6a2a9393..00000000
--- a/ismitmlink/bg.js
+++ /dev/null
@@ -1,77 +0,0 @@
-let apiurl = 'https://searxes.danwin1210.me/collab/open/ismitm.php';
-let TORapiurl = 'http://searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion/collab/open/ismitm.php';
-
-fetch('http://searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion/collab/open/hi.php', {
- method: 'GET',
- mode: 'cors'
-}).then(r => r.text()).then(r => {
- if (r == 'hi') {
- apiurl = TORapiurl;
- }
-}).catch(() => {});
-
-function is_infected(f) {
- return new Promise((g, b) => {
- fetch(apiurl, {
- method: 'POST',
- mode: 'cors',
- headers: {
- 'Content-Type': 'application/x-www-form-urlencoded'
- },
- body: 'f=' + f
- }).then(r => r.json()).then(r => {
- if (r[0]) {
- g(r[1]);
- } else {
- b();
- }
- }).catch(b);
- });
-}
-
-function i_already_know_you(f) {
- if (!/^([a-z0-9_.-]{1,255})\.([a-z]{2,80})$/.test(f)) {
- return false;
- }
- return new Promise((g, b) => {
- browser.storage.local.get(f).then((ff) => {
- if (ff[f]) {
- if (ff[f] == 'y') {
- g(1);
- } else {
- g(-1);
- }
- } else {
- g(0);
- }
- }, () => {
- g(0);
- });
- });
-}
-
-function i_remember_you(f, t) {
- browser.storage.local.set({
- [f]: ((t) ? 'y' : 'n')
- });
-}
-
-browser.storage.local.clear().then(() => {
- browser.runtime.onMessage.addListener((request, sender, sendResponse) => {
- if (request && sender) {
- i_already_know_you(request).then((r) => {
- if (r == 1 || r == -1) {
- browser.tabs.sendMessage(sender.tab.id, [request, ((r == 1) ? true : false)]);
- }
- if (r == 0) {
- is_infected(request).then((a) => {
- i_remember_you(request, a);
- browser.tabs.sendMessage(sender.tab.id, [request, a]);
- }, () => {
- browser.tabs.sendMessage(sender.tab.id, [request, false]);
- });
- }
- }, () => {});
- }
- });
-}, () => {}); \ No newline at end of file
diff --git a/ismitmlink/cs.js b/ismitmlink/cs.js
deleted file mode 100644
index 1361a666..00000000
--- a/ismitmlink/cs.js
+++ /dev/null
@@ -1,32 +0,0 @@
-if (document.body && !['searxes.danwin1210.me', 'searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion', 'searxes.cyb'].includes(location.hostname)) {
- let cs = (function () {
- let s = document.createElement('style');
- document.head.appendChild(s);
- return s.sheet;
- })();
- 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]::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 = ['searxes.danwin1210.me', 'searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion', 'searxes.cyb', 'addons.mozilla.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 (!/^(.*)\.(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])").forEach(a => {
- a.dataset.mitm = 1;
- a.title = 'DANGER! DANGER! MITM!';
- });
- }
- }
- sendResponse(null);
- });
-} \ No newline at end of file
diff --git a/ismitmlink/icons/32.png b/ismitmlink/icons/32.png
deleted file mode 100644
index c39e88bf..00000000
--- a/ismitmlink/icons/32.png
+++ /dev/null
Binary files differ
diff --git a/ismitmlink/manifest.json b/ismitmlink/manifest.json
deleted file mode 100644
index f064778d..00000000
--- a/ismitmlink/manifest.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "manifest_version": 2,
- "name": "Are links vulnerable to MITM attack?",
- "description": "Scan FQDN using Searxes' API",
- "version": "1.0.4",
- "homepage_url": "https://notabug.org/themusicgod1/cloudflare-tor/src/master/ismitmlink",
- "author": "Maslin Bossé",
- "permissions": [
- "storage",
- "unlimitedStorage"
- ],
- "icons": {
- "32": "icons/32.png"
- },
- "background": {
- "scripts": [
- "bg.js"
- ]
- },
- "content_scripts": [
- {
- "matches": [
- "http://*/*",
- "https://*/*"
- ],
- "js": [
- "cs.js"
- ],
- "run_at": "document_end"
- }
- ],
- "applications": {
- "gecko": {
- "id": "ismitm@searxes.danwin1210.me",
- "strict_min_version": "56.0"
- }
- }
-} \ No newline at end of file