summaryrefslogtreecommitdiffstats
path: root/addon_chrome/ismitmlink/bg.js
diff options
context:
space:
mode:
authorwritecode <wri@tec.ode>2019-05-06 01:44:10 +0000
committerwritecode <wri@tec.ode>2019-05-06 01:44:10 +0000
commit00da252021162cac5f53770f01fc4bcf0a4d9989 (patch)
treee0c7d260402de6dbafc6d80012313961b611e684 /addon_chrome/ismitmlink/bg.js
parent5157e1ae44c790d4eeae9bdb7c227478e093ff8a (diff)
downloadcloudflare-tor-00da252021162cac5f53770f01fc4bcf0a4d9989.tar
cloudflare-tor-00da252021162cac5f53770f01fc4bcf0a4d9989.tar.gz
cloudflare-tor-00da252021162cac5f53770f01fc4bcf0a4d9989.tar.lz
cloudflare-tor-00da252021162cac5f53770f01fc4bcf0a4d9989.tar.xz
cloudflare-tor-00da252021162cac5f53770f01fc4bcf0a4d9989.zip
Upload files to 'addon_chrome/ismitmlink'
Diffstat (limited to 'addon_chrome/ismitmlink/bg.js')
-rw-r--r--addon_chrome/ismitmlink/bg.js83
1 files changed, 83 insertions, 0 deletions
diff --git a/addon_chrome/ismitmlink/bg.js b/addon_chrome/ismitmlink/bg.js
new file mode 100644
index 00000000..6794132f
--- /dev/null
+++ b/addon_chrome/ismitmlink/bg.js
@@ -0,0 +1,83 @@
+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/ok', {
+ method: 'GET',
+ mode: 'cors'
+}).then(r => r.text()).then(r => {
+ if (r == 'ok') {
+ apiurl = TORapiurl;
+ }
+}).catch(() => {});
+
+function is_infected(f) {
+ console.log(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) => {
+ chrome.storage.local.get(f, (ff) => {
+ if (ff[f]) {
+ if (ff[f] == 'y') {
+ g(1);
+ } else {
+ g(-1);
+ }
+ } else {
+ g(0);
+ }
+ });
+ });
+}
+
+function i_remember_you(f, t) {
+ chrome.storage.local.set({
+ [f]: ((t) ? 'y' : 'n')
+ });
+}
+
+function clear_cache_week() {
+ chrome.storage.local.clear();
+ setTimeout(function () {
+ clear_cache();
+ }, 604800000);
+}
+
+clear_cache_week();
+
+chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
+ if (request) {
+ i_already_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_infected(request).then((a) => {
+ i_remember_you(request, a);
+ chrome.tabs.sendMessage(sender.tab.id, [request, a]);
+ }, () => {
+ chrome.tabs.sendMessage(sender.tab.id, [request, false]);
+ });
+ }
+ }, () => {});
+ }
+}); \ No newline at end of file