aboutsummaryrefslogtreecommitdiffstats
path: root/addons/isattlinkCR/bg.js
diff options
context:
space:
mode:
authorletssync <letssync@noreply.codeberg.org>2020-07-31 01:12:02 +0200
committerletssync <letssync@noreply.codeberg.org>2020-07-31 01:12:02 +0200
commitc90a9b95f0e59aa8fb26065b15016d66b00ab3ac (patch)
tree12de892320ed79e4665119fe84dd963003b8bae5 /addons/isattlinkCR/bg.js
parent8ac22cd5ac38304375ad70033c10f748a3b466df (diff)
downloadcloudflare-tor-c90a9b95f0e59aa8fb26065b15016d66b00ab3ac.tar.lz
cloudflare-tor-c90a9b95f0e59aa8fb26065b15016d66b00ab3ac.tar.xz
cloudflare-tor-c90a9b95f0e59aa8fb26065b15016d66b00ab3ac.zip
Upload files to 'addons/isattlinkCR'
Diffstat (limited to 'addons/isattlinkCR/bg.js')
-rw-r--r--addons/isattlinkCR/bg.js267
1 files changed, 267 insertions, 0 deletions
diff --git a/addons/isattlinkCR/bg.js b/addons/isattlinkCR/bg.js
new file mode 100644
index 00000000..92519f5c
--- /dev/null
+++ b/addons/isattlinkCR/bg.js
@@ -0,0 +1,267 @@
+let localUse = false,
+ localDB = [],
+ timr, memcache = {},
+ forcePurge = false,
+ apiurl = 'http://api.wodferndripvpe6ib4uz4rtngrnzichnirgn7t5x64gxcyroopbhsuqd.onion/_/is_antitor.php';
+/*
+chrome.storage.local.get(['cep'], g => {
+ if (g.cep == 'y') {
+ apiurl = 'http://api.wodferndripvpe6ib4uz4rtngrnzichnirgn7t5x64gxcyroopbhsuqd.onion/_/is_antitor.php';
+ } else {
+ if (g.cep != 'n') {
+ chrome.storage.local.set({
+ 'cep': 'n'
+ });
+ fetch('http://api.wodferndripvpe6ib4uz4rtngrnzichnirgn7t5x64gxcyroopbhsuqd.onion/_/ok.php', {
+ method: 'GET',
+ mode: 'cors'
+ }).then(r => r.text()).then(r => {
+ if (r == 'ok') {
+ apiurl = 'http://api.wodferndripvpe6ib4uz4rtngrnzichnirgn7t5x64gxcyroopbhsuqd.onion/_/is_antitor.php';
+ chrome.storage.local.set({
+ 'cep': 'y'
+ });
+ }
+ }).catch(() => {});
+ }
+ }
+});
+*/
+function is_hostile(f) {
+ if (localUse) {
+ return new Promise((g, b) => {
+ g(localDB.includes(f) ? true : false);
+ });
+ }
+ 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_know_you(f) {
+ if (!/^([a-z0-9_.-]{1,255})\.([a-z]{2,80})$/.test(f)) {
+ return new Promise((g, b) => {
+ g(200);
+ });
+ }
+ let m;
+ if (memcache[f] != undefined) {
+ m = memcache[f];
+ return new Promise((g, b) => {
+ g(m);
+ });
+ }
+ return new Promise((g, b) => {
+ chrome.storage.local.get([f], (ff) => {
+ if (ff[f]) {
+ if (ff[f] == 'y') {
+ memcache[f] = 1;
+ g(1);
+ } else {
+ memcache[f] = -1;
+ g(-1);
+ }
+ } else {
+ g(0);
+ }
+ });
+ });
+}
+function forget_cache() {
+ chrome.storage.local.get(['ign1', 'obs', 'dbg', 'alt', 'cep', 'mul', 'opd', 'ldb'], g => {
+ chrome.storage.local.clear();
+ memcache = {};
+ chrome.storage.local.set({
+ 'ign1': (g.ign1 == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'obs': (g.obs == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'dbg': (g.dbg == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'alt': (g.alt == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'cep': (g.cep == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'mul': (g.mul != undefined ? g.mul : 'eo')
+ });
+ chrome.storage.local.set({
+ 'opd': (g.opd == 'n' ? 'n' : 'y')
+ });
+ chrome.storage.local.set({
+ 'ldb': (g.ldb != undefined ? g.ldb : '[]')
+ });
+ chrome.storage.local.set({
+ 'lastU': Math.round((new Date()).getTime() / 1000)
+ });
+ chrome.storage.local.set({
+ 'lastV': (chrome.runtime.getManifest()).version
+ });
+ });
+ clearTimeout(timr);
+ timr = setTimeout(function () {
+ forget_cache();
+ }, 1814400000);
+}
+chrome.storage.local.get(['lastU', 'lastV', 'ldb', 'opd'], g => {
+ localUse = (g.opd == 'n') ? true : false;
+ localDB = JSON.parse(g.ldb || '[]');
+ if (g.lastU) {
+ if (Math.abs(Math.round((new Date()).getTime() / 1000) - g.lastU) > 1814400) {
+ chrome.storage.local.get(['ign1', 'obs', 'dbg', 'alt', 'cep', 'mul', 'opd', 'ldb'], g => {
+ chrome.storage.local.clear();
+ memcache = {};
+ chrome.storage.local.set({
+ 'ign1': (g.ign1 == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'obs': (g.obs == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'dbg': (g.dbg == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'alt': (g.alt == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'cep': (g.cep == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'mul': (g.mul != undefined ? g.mul : 'eo')
+ });
+ chrome.storage.local.set({
+ 'opd': (g.opd == 'n' ? 'n' : 'y')
+ });
+ chrome.storage.local.set({
+ 'ldb': (g.ldb != undefined ? g.ldb : '[]')
+ });
+ chrome.storage.local.set({
+ 'lastU': Math.round((new Date()).getTime() / 1000)
+ });
+ });
+ }
+ } else {
+ chrome.storage.local.set({
+ 'lastU': Math.round((new Date()).getTime() / 1000)
+ });
+ }
+ let nowVer = (chrome.runtime.getManifest()).version;
+ if (g.lastV != nowVer || forcePurge) {
+ chrome.storage.local.get(['ign1', 'obs', 'dbg', 'alt', 'cep', 'mul', 'opd', 'ldb'], g => {
+ chrome.storage.local.clear();
+ memcache = {};
+ chrome.storage.local.set({
+ 'ign1': (g.ign1 == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'obs': (g.obs == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'dbg': (g.dbg == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'alt': (g.alt == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'cep': (g.cep == 'y' ? 'y' : 'n')
+ });
+ chrome.storage.local.set({
+ 'mul': (g.mul != undefined ? g.mul : 'eo')
+ });
+ chrome.storage.local.set({
+ 'opd': (g.opd == 'n' ? 'n' : 'y')
+ });
+ chrome.storage.local.set({
+ 'ldb': (g.ldb != undefined ? g.ldb : '[]')
+ });
+ chrome.storage.local.set({
+ 'lastU': Math.round((new Date()).getTime() / 1000)
+ });
+ chrome.storage.local.set({
+ 'lastV': (chrome.runtime.getManifest()).version
+ });
+ });
+ }
+ timr = setTimeout(function () {
+ forget_cache();
+ }, 1814400000);
+});
+chrome.runtime.onMessage.addListener((requests, sender, sendResponse) => {
+ if (requests) {
+ if (requests === 'clear') {
+ forget_cache();
+ return;
+ }
+ if (requests.indexOf('dbmode,') === 0) {
+ switch (requests) {
+ case 'dbmode,s1':
+ chrome.storage.local.set({
+ 'opd': 'y'
+ });
+ localUse = false;
+ break;
+ case 'dbmode,s0':
+ chrome.storage.local.set({
+ 'opd': 'n'
+ });
+ localUse = true;
+ break;
+ case 'dbmode,cl':
+ chrome.storage.local.set({
+ 'ldb': '[]'
+ });
+ localDB = [];
+ break;
+ case 'dbmode,rl':
+ chrome.storage.local.get(['ldb'], (g) => {
+ localDB = JSON.parse(g.ldb || '[]');
+ });
+ break;
+ }
+ return;
+ }
+ requests.forEach(request => {
+ i_know_you(request).then((r) => {
+ if (r == 1 || r == -1) {
+ chrome.tabs.sendMessage(sender.tab.id, [request, ((r == 1) ? true : false)]);
+ }
+ if (r == 0) {
+ is_hostile(request).then((a) => {
+ if (a) {
+ chrome.storage.local.set({
+ [request]: 'y'
+ });
+ } else {
+ chrome.storage.local.set({
+ [request]: 'n'
+ });
+ }
+ if (Object.keys(memcache).length > 650) {
+ memcache = {};
+ }
+ chrome.tabs.sendMessage(sender.tab.id, [request, a]);
+ }, () => {
+ chrome.tabs.sendMessage(sender.tab.id, [request, false]);
+ });
+ }
+ }, () => {});
+ });
+ }
+ return;
+}); \ No newline at end of file