mirror of
https://codeberg.org/crimeflare/cloudflare-tor
synced 2024-11-10 03:12:49 +00:00
Upload files to 'addon_chrome/bcma'
This commit is contained in:
parent
cb75b7305f
commit
aa9c54dc7c
@ -3,7 +3,7 @@ The MIT License
|
|||||||
Copyright (c) 2017 Project BCMA
|
Copyright (c) 2017 Project BCMA
|
||||||
Copyright (c) 2017 cypherpunks
|
Copyright (c) 2017 cypherpunks
|
||||||
Copyright (c) 2017 nullius <nullius@nym.zone>
|
Copyright (c) 2017 nullius <nullius@nym.zone>
|
||||||
Copyright (c) 2018 Searxes <searxes.danwin1210.me>
|
Copyright (c) 2019 Searxes <searxes.eu.org>
|
||||||
Copyright (c) 2018 Jeff Cliff <@jeffcliff@niu.moe>
|
Copyright (c) 2018 Jeff Cliff <@jeffcliff@niu.moe>
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
@ -1,24 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
"Welcome to PRISM 2.0"
|
"Welcome to PRISM 2.0"
|
||||||
*/
|
*/
|
||||||
var cf_flag_ok = 'icons/cf_0.png';
|
const cf_flag_ok = 'icons/cf_0.png';
|
||||||
var cf_flag_ng = 'icons/cf_1.png';
|
const cf_flag_ng = 'icons/cf_1.png';
|
||||||
var force_whitelist = ['searxes.cf', 'thunderbird.net', 'mozilla.org', 'archive.org', 'cloudflare.com', 'cloudflareapps.com', 'cloudflare-dns.com', 'cloudflarestatus.com', 'cloudflareapi.com', 'cloudflare-ipfs.com', 'cloudflare-quic.com'];
|
const force_whitelist = ['searxes.eu.org', 'thunderbird.net', 'mozilla.org', 'archive.org', 'cloudflare.com', 'cloudflareapps.com', 'cloudflare-dns.com', 'cloudflarestatus.com', 'cloudflareapi.com', 'cloudflare-ipfs.com', 'cloudflare-quic.com'];
|
||||||
var cfdomains = [];
|
let my_cf_collection = [];
|
||||||
var known_cf_domains = [];
|
let my_cf_ignore = [];
|
||||||
|
let my_action = 2;
|
||||||
fetch('bcmadata.txt', {
|
|
||||||
method: 'GET'
|
|
||||||
}).then(function (b) {
|
|
||||||
return b.text();
|
|
||||||
}).then(function (b) {
|
|
||||||
cfdomains = b.split("\n").filter(v => v != '');
|
|
||||||
known_cf_domains = cfdomains;
|
|
||||||
});
|
|
||||||
|
|
||||||
var my_cf_collection = [];
|
|
||||||
var my_cf_ignore = [];
|
|
||||||
var my_action = 2;
|
|
||||||
|
|
||||||
function onError(e) {
|
function onError(e) {
|
||||||
console.log(`BCMA: Error:${e}`);
|
console.log(`BCMA: Error:${e}`);
|
||||||
@ -43,7 +31,7 @@ function get_realdomain(w) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (wa[0] == 'org') {
|
if (wa[0] == 'org') {
|
||||||
if (wa[1] == 'ae') {
|
if (wa[1] == 'ae' || wa[1] == 'eu') {
|
||||||
return wa[2] + "." + wa[1] + "." + wa[0];
|
return wa[2] + "." + wa[1] + "." + wa[0];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -620,7 +608,7 @@ function update_icon(tid, url) {
|
|||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (known_cf_domains.includes(cf_hostname) || my_cf_collection.includes(cf_hostname)) {
|
if (my_cf_collection.includes(cf_hostname)) {
|
||||||
if (my_action == 3) {
|
if (my_action == 3) {
|
||||||
chrome.tabs.executeScript(tid, {
|
chrome.tabs.executeScript(tid, {
|
||||||
matchAboutBlank: true,
|
matchAboutBlank: true,
|
||||||
@ -678,7 +666,7 @@ chrome.webRequest.onHeadersReceived.addListener(function (wr) {
|
|||||||
if (force_whitelist.includes(wr_hostname)) {
|
if (force_whitelist.includes(wr_hostname)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var cf_is = (known_cf_domains.includes(wr_hostname) || my_cf_collection.includes(wr_hostname)) ? true : false;
|
var cf_is = (my_cf_collection.includes(wr_hostname)) ? true : false;
|
||||||
if (!cf_is) {
|
if (!cf_is) {
|
||||||
var cf_headers = wr.responseHeaders,
|
var cf_headers = wr.responseHeaders,
|
||||||
cf_v_name, cf_v_value;
|
cf_v_name, cf_v_value;
|
||||||
@ -761,7 +749,7 @@ chrome.webRequest.onBeforeRequest.addListener(function (wr) {
|
|||||||
if (force_whitelist.includes(wr_hostname)) {
|
if (force_whitelist.includes(wr_hostname)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var cf_is = (known_cf_domains.includes(wr_hostname) || my_cf_collection.includes(wr_hostname)) ? true : false;
|
var cf_is = (my_cf_collection.includes(wr_hostname)) ? true : false;
|
||||||
if (cf_is) {
|
if (cf_is) {
|
||||||
console.log('BCMA: Block Cloudflare BR', wr_hostname);
|
console.log('BCMA: Block Cloudflare BR', wr_hostname);
|
||||||
if (my_action == 0 || my_action == 1) {
|
if (my_action == 0 || my_action == 1) {
|
||||||
@ -788,20 +776,12 @@ chrome.webRequest.onBeforeRequest.addListener(function (wr) {
|
|||||||
|
|
||||||
chrome.runtime.onMessage.addListener(function (a, b, c) {
|
chrome.runtime.onMessage.addListener(function (a, b, c) {
|
||||||
if (a[0] == 'cf') {
|
if (a[0] == 'cf') {
|
||||||
c(['ok', JSON.stringify(my_cf_collection), JSON.stringify(my_cf_ignore), (known_cf_domains.length == 0) ? false : true, my_action]);
|
c(['ok', JSON.stringify(my_cf_collection), JSON.stringify(my_cf_ignore), my_action]);
|
||||||
}
|
}
|
||||||
if (a[0] == 'erosman') {
|
if (a[0] == 'erosman') {
|
||||||
my_cf_collection = [];
|
my_cf_collection = [];
|
||||||
c(['destroy']);
|
c(['destroy']);
|
||||||
}
|
}
|
||||||
if (a[0] == 'bi') {
|
|
||||||
if (a[1] == 'y') {
|
|
||||||
known_cf_domains = cfdomains;
|
|
||||||
} else {
|
|
||||||
known_cf_domains = [];
|
|
||||||
}
|
|
||||||
c(['ok']);
|
|
||||||
}
|
|
||||||
if (a[0] == 'ta') {
|
if (a[0] == 'ta') {
|
||||||
if (a[1] == '0') {
|
if (a[1] == '0') {
|
||||||
my_action = 0;
|
my_action = 0;
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "Block Cloudflare MITM Attack",
|
"name": "Block Cloudflare MITM Attack",
|
||||||
"description": "Submit to global surveillance or resist. The choice is yours.",
|
"description": "Submit to global surveillance or resist. The choice is yours.",
|
||||||
"version": "1.0.1905.1",
|
"version": "1.0.1907.1",
|
||||||
"minimum_chrome_version": "60",
|
"minimum_chrome_version": "60",
|
||||||
"author": "Project BCMA",
|
"author": "Project BCMA",
|
||||||
"homepage_url": "https://codeberg.org/crimeflare/cloudflare-tor",
|
"homepage_url": "https://codeberg.org/crimeflare/cloudflare-tor",
|
||||||
|
@ -6,10 +6,6 @@
|
|||||||
<body style="display:none">
|
<body style="display:none">
|
||||||
Temporary configurations
|
Temporary configurations
|
||||||
<hr>
|
<hr>
|
||||||
<b>☞ Built-in Cloudflare list (.com only)</b> <small>(powered by <a href="https://searxes.danwin1210.me/" target="_blank">Searxes</a>)</small><br>
|
|
||||||
<label><input type="radio" id="bi0" name="bi" value="0"> Use built-in list</label> <small>(Default)</small><br>
|
|
||||||
<label><input type="radio" id="bi1" name="bi" value="1"> Don't use built-in list</label><br>
|
|
||||||
<br>
|
|
||||||
<b>♞ Take Action</b><br>
|
<b>♞ Take Action</b><br>
|
||||||
<label><input type="radio" id="ta0" name="ta" value="0"> Block request immediately <small>(first-party + third-party)</small></label><br>
|
<label><input type="radio" id="ta0" name="ta" value="0"> Block request immediately <small>(first-party + third-party)</small></label><br>
|
||||||
<label><input type="radio" id="ta1" name="ta" value="1"> Block request immediately <small>(third-party only / ignore first-party)</small></label><br>
|
<label><input type="radio" id="ta1" name="ta" value="1"> Block request immediately <small>(third-party only / ignore first-party)</small></label><br>
|
||||||
@ -17,7 +13,7 @@
|
|||||||
<label><input type="radio" id="ta3" name="ta" value="3"> Notify only</label><br>
|
<label><input type="radio" id="ta3" name="ta" value="3"> Notify only</label><br>
|
||||||
<br>
|
<br>
|
||||||
<b>✍ Your Cloudflare Domain collection</b> <small>(Last 500)</small><br>
|
<b>✍ Your Cloudflare Domain collection</b> <small>(Last 500)</small><br>
|
||||||
<small>(please share with <a href="https://codeberg.org/crimeflare/cloudflare-tor/" target="_blank">cloudflare-tor@notabug</a>)</small><br>
|
<small>(please share with <a href="https://codeberg.org/crimeflare/cloudflare-tor" target="_blank">cloudflare-tor@crimeflare</a>)</small><br>
|
||||||
<textarea cols="50" rows="12" id="t" wrap="off" spellcheck="false" placeholder="Cloudflare domains"></textarea>
|
<textarea cols="50" rows="12" id="t" wrap="off" spellcheck="false" placeholder="Cloudflare domains"></textarea>
|
||||||
<br>
|
<br>
|
||||||
<button type="button" id="exp">[ ⇓ Export ]</button>
|
<button type="button" id="exp">[ ⇓ Export ]</button>
|
||||||
|
@ -3,14 +3,7 @@ document.addEventListener('DOMContentLoaded', function () {
|
|||||||
if (r[0] == 'ok') {
|
if (r[0] == 'ok') {
|
||||||
document.getElementById('t').value = JSON.parse(r[1]).join("\n");
|
document.getElementById('t').value = JSON.parse(r[1]).join("\n");
|
||||||
document.getElementById('g').value = JSON.parse(r[2]).join("\n");
|
document.getElementById('g').value = JSON.parse(r[2]).join("\n");
|
||||||
if (r[3]) {
|
switch (r[3]) {
|
||||||
document.getElementById('bi0').checked = true;
|
|
||||||
document.getElementById('bi1').checked = false;
|
|
||||||
} else {
|
|
||||||
document.getElementById('bi0').checked = false;
|
|
||||||
document.getElementById('bi1').checked = true;
|
|
||||||
}
|
|
||||||
switch (r[4]) {
|
|
||||||
case 1:
|
case 1:
|
||||||
document.getElementById('ta0').checked = false;
|
document.getElementById('ta0').checked = false;
|
||||||
document.getElementById('ta1').checked = true;
|
document.getElementById('ta1').checked = true;
|
||||||
@ -53,16 +46,6 @@ document.getElementById('clr').addEventListener('click', function () {
|
|||||||
document.getElementById('t').value = '';
|
document.getElementById('t').value = '';
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
document.getElementById('bi0').addEventListener('click', function () {
|
|
||||||
if (this.checked) {
|
|
||||||
chrome.runtime.sendMessage(['bi', 'y']);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
document.getElementById('bi1').addEventListener('click', function () {
|
|
||||||
if (this.checked) {
|
|
||||||
chrome.runtime.sendMessage(['bi', 'n']);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
document.getElementById('ta0').addEventListener('click', function () {
|
document.getElementById('ta0').addEventListener('click', function () {
|
||||||
if (this.checked) {
|
if (this.checked) {
|
||||||
chrome.runtime.sendMessage(['ta', '0']);
|
chrome.runtime.sendMessage(['ta', '0']);
|
||||||
|
Loading…
Reference in New Issue
Block a user