diff options
author | Jeff Cliff <jeffrey.cliff@gmail.com> | 2019-02-26 12:36:31 -0500 |
---|---|---|
committer | Jeff Cliff <jeffrey.cliff@gmail.com> | 2019-02-26 12:36:31 -0500 |
commit | 8c90e229c64ddc43f254d40fe5edbb05131ba343 (patch) | |
tree | 6c2a7260c64ff5b5d88e0e16d0857da868b0d520 | |
parent | 8fb8aefaf8cec1dd018ad918b28195a317fd7720 (diff) | |
parent | c573584316309544a717d647a8fec5b93cbc3cf5 (diff) | |
download | cloudflare-tor-8c90e229c64ddc43f254d40fe5edbb05131ba343.tar cloudflare-tor-8c90e229c64ddc43f254d40fe5edbb05131ba343.tar.gz cloudflare-tor-8c90e229c64ddc43f254d40fe5edbb05131ba343.tar.lz cloudflare-tor-8c90e229c64ddc43f254d40fe5edbb05131ba343.tar.xz cloudflare-tor-8c90e229c64ddc43f254d40fe5edbb05131ba343.zip |
Merge https://notabug.org/themusicgod1/cloudflare-tor
-rw-r--r-- | NEWS.md | 1 | ||||
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | bcma/README.md | 5 | ||||
-rw-r--r-- | image/feed.png | bin | 0 -> 654 bytes | |||
-rw-r--r-- | ismitmlink/bg.js | 2 | ||||
-rw-r--r-- | ismitmlink/cs.js | 5 | ||||
-rw-r--r-- | ismitmlink/manifest.json | 2 |
7 files changed, 11 insertions, 5 deletions
@@ -1,4 +1,3 @@ - *2019.02.24* ``` @@ -38,6 +38,7 @@ Also see [Frequently Asked Questions](faq.md). * Add WTF-Cloudflare news to [NEWS.md](NEWS.md) * Search something on [Searxes](https://searxes.danwin1210.me/) (this will help collecting Searxes' "MITM domains") * Take a look at [add-on code](ismitmlink/) +* Subscribe to an ![](image/feed.png) RSS feed: ["The Great Cloudwall News"](https://searxes.danwin1210.me/collab/open/getrss.php?q=tmg1news) ![WTF](image/wtfcf.jpg) diff --git a/bcma/README.md b/bcma/README.md new file mode 100644 index 00000000..b0ded110 --- /dev/null +++ b/bcma/README.md @@ -0,0 +1,5 @@ +This is a source code of BCMA's "*Block Cloudflare MITM Attack*". + +PRs are welcome. + +AMO: https://addons.mozilla.org/en-US/firefox/addon/bcma/
\ No newline at end of file diff --git a/image/feed.png b/image/feed.png Binary files differnew file mode 100644 index 00000000..3a859cee --- /dev/null +++ b/image/feed.png diff --git a/ismitmlink/bg.js b/ismitmlink/bg.js index a3e3bfbe..5e575692 100644 --- a/ismitmlink/bg.js +++ b/ismitmlink/bg.js @@ -26,7 +26,7 @@ browser.runtime.onMessage.addListener((request, sender, sendResponse) => { if (request && sender) { if (mymemory[request] != undefined) { let rlt = mymemory[request]; - if (Object.keys(mymemory).length > 800) { + if (Object.keys(mymemory).length > 20000) { let cnt = 1; for (let t in mymemory) { if (cnt > 10) { diff --git a/ismitmlink/cs.js b/ismitmlink/cs.js index d19ab5b1..b28b81ef 100644 --- a/ismitmlink/cs.js +++ b/ismitmlink/cs.js @@ -1,5 +1,5 @@ if (document.body) { - if (!['searxes.danwin1210.me', 'searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion'].includes(location.hostname)) { + if (!['searxes.danwin1210.me', 'searxes.nmqnkngye4ct7bgss4bmv5ca3wpa55yugvxen5kz2bbq67lwy6ps54yd.onion', 'searxes.cyb'].includes(location.hostname)) { let cs = (function () { let s = document.createElement('style'); document.head.appendChild(s); @@ -7,8 +7,9 @@ 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); } - let asked = [location.hostname, 'searxes.danwin1210.me']; + let asked = [location.hostname, '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)) { diff --git a/ismitmlink/manifest.json b/ismitmlink/manifest.json index b7142bab..885e2004 100644 --- a/ismitmlink/manifest.json +++ b/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.1", + "version": "1.0.2", "author": "Maslin Bossé", "permissions": [], "icons": { |