Files
I2P_in_Private_Browsing_Mod…/host.js

205 lines
6.0 KiB
JavaScript
Raw Normal View History

2022-10-07 13:26:09 -04:00
function proxyHost(requestDetails) {
if (requestDetails.originUrl != browser.runtime.getURL('window.html')) {
} else if (requestDetails.originUrl != browser.runtime.getURL('home.html')) {
2022-10-16 16:50:28 -04:00
} else {
return false;
}
2022-10-16 15:00:54 -04:00
let hostname = '';
if (requestDetails.url.indexOf('://') > -1) {
hostname = requestDetails.url.split('/')[2];
2022-10-16 16:50:28 -04:00
} else {
hostname = requestDetails.url.split('/')[0];
2022-10-16 16:50:28 -04:00
}
console.warn('(host) hostname', hostname);
if (hostname == 'proxy.i2p') {
console.warn('(host) is proxy.i2p', hostname);
2022-10-16 16:50:28 -04:00
return true;
}
console.warn('(host) requestDetails', requestDetails.url);
2022-10-16 16:50:28 -04:00
if (
hostname == 'c6lilt4cr5x7jifxridpkesf2zgfwqfchtp6laihr4pdqomq25iq.b32.i2p'
2022-10-16 16:50:28 -04:00
) {
return true;
}
return false;
2019-11-23 18:41:18 -05:00
}
function localHost(url) {
let hostname = '';
if (url.indexOf('://') > -1) {
hostname = url.split('/')[2];
2022-10-16 16:50:28 -04:00
} else {
hostname = url.split('/')[0];
}
hostname = hostname.split(':')[0];
console.log('(urlcheck) hostname localhost', hostname);
console.log('(urlcheck) url localhost', url);
if (hostname === '127.0.0.1') {
if (url.indexOf(':8084') != -1) return 'blog';
if (url.indexOf(':7669') != -1) return 'irc';
if (url.indexOf(':7695') != -1) return 'tor';
} else if (hostname === 'localhost') {
if (url.indexOf(':8084') != -1) return 'blog';
if (url.indexOf(':7669') != -1) return 'irc';
if (url.indexOf(':7695') != -1) return 'tor';
2022-10-16 16:50:28 -04:00
}
2019-11-23 18:41:18 -05:00
2022-10-16 16:50:28 -04:00
return false;
2019-11-23 18:41:18 -05:00
}
function extensionHost(url) {
2022-10-16 16:50:28 -04:00
var prefix = browser.runtime
.getURL('')
.replace('moz-extension://', '')
.replace('/', '');
2022-10-16 16:50:28 -04:00
if (url.originUrl !== undefined) {
var originUrl = url.originUrl
.replace('moz-extension://', '')
.replace('/', '');
2022-10-16 16:50:28 -04:00
// console.log("(urlcheck) Extension application path", originUrl);
// console.log("(urlcheck) Extension application path", prefix);
var res = originUrl.startsWith(prefix);
// console.log("(urlcheck) Extension application path", res);
if (res) return res;
}
if (url.documentUrl !== undefined) {
// console.log("(urlcheck) Extension application path", originUrl);
// console.log("(urlcheck) Extension application path", prefix);
var res = originUrl.startsWith(prefix);
// console.log("(urlcheck) Extension application path", res);
if (res) return res;
}
console.log('(urlcheck) Extension application path', url);
}
2019-11-23 18:41:18 -05:00
function i2pHostName(url) {
let hostname = '';
console.log('(hosts)', url);
2022-10-16 16:50:28 -04:00
let u = new URL(url);
if (u.host.endsWith('.i2p')) {
2022-10-16 16:50:28 -04:00
hostname = u.host;
} else if (url.includes('=')) {
if (url.includes('.i2p')) {
lsit = url.split('=');
2022-10-16 16:50:28 -04:00
for (let item in lsit) {
var items = lsit[item].split(`\ % `); //"\%")
for (let p in items) {
if (items[p].includes('.i2p')) {
hostname = items[p].replace('3D', 1);
2022-10-16 16:50:28 -04:00
}
break;
2022-10-07 19:32:52 -04:00
}
if (hostname != '') {
2022-10-16 16:50:28 -04:00
break;
}
}
}
} else if (url.indexOf('://') > -1) {
hostname = url.split('/')[2];
2022-10-16 16:50:28 -04:00
} else {
hostname = url.split('/')[0];
2022-10-16 16:50:28 -04:00
}
console.log('(hosts) scrub', hostname);
2022-10-16 16:50:28 -04:00
return hostname;
2019-11-23 18:41:18 -05:00
}
function i2pHost(url) {
2022-10-16 16:50:28 -04:00
if (proxyHost(url)) {
console.warn('(host) proxy.i2p', url.url);
2022-10-16 16:50:28 -04:00
return false;
}
let hostname = i2pHostName(url.url);
let postname = hostname.split(':')[0];
if (postname.endsWith('proxy.i2p')) {
2022-10-16 16:50:28 -04:00
return false;
}
return postname.endsWith('.i2p');
2019-11-23 18:41:18 -05:00
}
function routerHost(url) {
2022-10-16 16:50:28 -04:00
// console.log("(urlcheck) HOST URL CHECK");
let hostname = '';
let path = '';
2022-02-15 21:15:47 -05:00
2022-10-16 16:50:28 -04:00
function pathcheck(str) {
if (str != undefined) {
let final = str.split('/')[0];
if (final === 'i2ptunnelmgr' || final === 'i2ptunnel') {
console.log('(urlcheck) Tunnel application path', final);
return 'i2ptunnelmgr';
2022-10-16 16:50:28 -04:00
} else if (
final === 'i2psnark' ||
final === 'torrents' ||
final.startsWith('transmission') ||
final.startsWith('tracker') ||
url.includes(':7662')
2022-10-16 16:50:28 -04:00
) {
console.log('(urlcheck) Torrent application path', final);
return 'i2psnark';
} else if (final === 'webmail' || final === 'susimail') {
if (!url.includes('.css')) {
console.log('(urlcheck) Mail application path', final);
return 'webmail';
2022-10-07 19:32:52 -04:00
}
} else if (final.startsWith('MuWire')) {
if (!url.includes('.png')) {
console.log('(urlcheck) MuWire application path', final);
return 'muwire';
2022-10-16 16:50:28 -04:00
}
} else if (final.startsWith('i2pbote')) {
if (!url.includes('.png')) {
console.log('(urlcheck) I2PBote application path', final);
return 'i2pbote';
2022-10-16 16:50:28 -04:00
}
} else if (
final === 'home' ||
final === 'console' ||
final === 'dns' ||
final === 'susidns' ||
final.startsWith('susidns') ||
final === 'sitemap' ||
final.startsWith('config')
2022-10-16 16:50:28 -04:00
) {
console.log('(urlcheck) Console application path', final);
return 'routerconsole';
2022-10-16 16:50:28 -04:00
}
}
return true;
}
if (url.indexOf('://') > -1) {
hostname = url.split('/')[2];
let prefix = url.substr(0, url.indexOf('://') + 3);
path = url.replace(prefix + hostname + '/', '');
2022-10-16 16:50:28 -04:00
} else if (identifyProtocolHandler(url)) {
let newurl = identifyProtocolHandler(url);
return routerHost(newurl);
} else {
hostname = url.split('/')[0];
path = url.replace(hostname + '/', '');
2022-10-16 16:50:28 -04:00
}
if (hostname === control_host + ':' + control_port) {
2022-10-16 16:50:28 -04:00
return pathcheck(path);
}
if (hostname === 'localhost' + ':' + control_port) {
2022-10-16 16:50:28 -04:00
return pathcheck(path);
}
if (hostname === '127.0.0.1' + ':' + control_port) {
2022-10-16 16:50:28 -04:00
return pathcheck(path);
}
if (hostname === 'localhost' + ':' + 7070) {
2022-10-16 16:50:28 -04:00
return pathcheck(path);
}
if (hostname === '127.0.0.1' + ':' + 7070) {
2022-10-16 16:50:28 -04:00
return pathcheck(path);
}
if (hostname === 'localhost' + ':' + 7667) {
2022-10-16 16:50:28 -04:00
return pathcheck(path);
}
if (hostname === '127.0.0.1' + ':' + 7667) {
2022-10-16 16:50:28 -04:00
return pathcheck(path);
}
return false;
}