mirror of
https://github.com/ThePhaseless/Byparr.git
synced 2025-03-16 02:00:21 +08:00
566 lines
20 KiB
JavaScript
566 lines
20 KiB
JavaScript
/*******************************************************************************
|
|
|
|
uBlock Origin Lite - a comprehensive, MV3-compliant content blocker
|
|
Copyright (C) 2014-present Raymond Hill
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see {http://www.gnu.org/licenses/}.
|
|
|
|
Home: https://github.com/gorhill/uBlock
|
|
|
|
*/
|
|
|
|
/* jshint esversion:11 */
|
|
/* global cloneInto */
|
|
|
|
'use strict';
|
|
|
|
// ruleset: annoyances-overlays
|
|
|
|
/******************************************************************************/
|
|
|
|
// Important!
|
|
// Isolate from global scope
|
|
|
|
// Start of local scope
|
|
(( ) => {
|
|
|
|
/******************************************************************************/
|
|
|
|
// Start of code to inject
|
|
const uBOL_noXhrIf = function() {
|
|
|
|
const scriptletGlobals = {}; // jshint ignore: line
|
|
|
|
const argsList = [["gif"],["googlesyndication"],["/hotjar|googletagmanager/"],["ads"]];
|
|
|
|
const hostnamesMap = new Map([["nusantararom.org",0],["unidivers.fr",1],["nsmb.com",1],["neilpatel.com",2],["solarmagazine.nl",3]]);
|
|
|
|
const entitiesMap = new Map([]);
|
|
|
|
const exceptionsMap = new Map([]);
|
|
|
|
/******************************************************************************/
|
|
|
|
function noXhrIf(
|
|
propsToMatch = '',
|
|
directive = ''
|
|
) {
|
|
if ( typeof propsToMatch !== 'string' ) { return; }
|
|
const safe = safeSelf();
|
|
const logPrefix = safe.makeLogPrefix('prevent-xhr', propsToMatch, directive);
|
|
const xhrInstances = new WeakMap();
|
|
const propNeedles = parsePropertiesToMatch(propsToMatch, 'url');
|
|
const warOrigin = scriptletGlobals.warOrigin;
|
|
const headers = {
|
|
'date': '',
|
|
'content-type': '',
|
|
'content-length': '',
|
|
};
|
|
self.XMLHttpRequest = class extends self.XMLHttpRequest {
|
|
open(method, url, ...args) {
|
|
xhrInstances.delete(this);
|
|
if ( warOrigin !== undefined && url.startsWith(warOrigin) ) {
|
|
return super.open(method, url, ...args);
|
|
}
|
|
const haystack = { method, url };
|
|
if ( propsToMatch === '' && directive === '' ) {
|
|
safe.uboLog(logPrefix, `Called: ${safe.JSON_stringify(haystack, null, 2)}`);
|
|
return super.open(method, url, ...args);
|
|
}
|
|
if ( matchObjectProperties(propNeedles, haystack) ) {
|
|
xhrInstances.set(this, haystack);
|
|
}
|
|
haystack.headers = Object.assign({}, headers);
|
|
return super.open(method, url, ...args);
|
|
}
|
|
send(...args) {
|
|
const haystack = xhrInstances.get(this);
|
|
if ( haystack === undefined ) {
|
|
return super.send(...args);
|
|
}
|
|
haystack.headers['date'] = (new Date()).toUTCString();
|
|
let promise = Promise.resolve({
|
|
xhr: this,
|
|
directive,
|
|
props: {
|
|
readyState: { value: 4 },
|
|
response: { value: '' },
|
|
responseText: { value: '' },
|
|
responseXML: { value: null },
|
|
responseURL: { value: haystack.url },
|
|
status: { value: 200 },
|
|
statusText: { value: 'OK' },
|
|
},
|
|
});
|
|
switch ( this.responseType ) {
|
|
case 'arraybuffer':
|
|
promise = promise.then(details => {
|
|
details.props.response.value = new ArrayBuffer(0);
|
|
return details;
|
|
});
|
|
haystack.headers['content-type'] = 'application/octet-stream';
|
|
break;
|
|
case 'blob':
|
|
promise = promise.then(details => {
|
|
details.props.response.value = new Blob([]);
|
|
return details;
|
|
});
|
|
haystack.headers['content-type'] = 'application/octet-stream';
|
|
break;
|
|
case 'document': {
|
|
promise = promise.then(details => {
|
|
const parser = new DOMParser();
|
|
const doc = parser.parseFromString('', 'text/html');
|
|
details.props.response.value = doc;
|
|
details.props.responseXML.value = doc;
|
|
return details;
|
|
});
|
|
haystack.headers['content-type'] = 'text/html';
|
|
break;
|
|
}
|
|
case 'json':
|
|
promise = promise.then(details => {
|
|
details.props.response.value = {};
|
|
details.props.responseText.value = '{}';
|
|
return details;
|
|
});
|
|
haystack.headers['content-type'] = 'application/json';
|
|
break;
|
|
default:
|
|
if ( directive === '' ) { break; }
|
|
promise = promise.then(details => {
|
|
return generateContentFn(details.directive).then(text => {
|
|
details.props.response.value = text;
|
|
details.props.responseText.value = text;
|
|
return details;
|
|
});
|
|
});
|
|
haystack.headers['content-type'] = 'text/plain';
|
|
break;
|
|
}
|
|
promise.then(details => {
|
|
haystack.headers['content-length'] = `${details.props.response.value}`.length;
|
|
Object.defineProperties(details.xhr, details.props);
|
|
details.xhr.dispatchEvent(new Event('readystatechange'));
|
|
details.xhr.dispatchEvent(new Event('load'));
|
|
details.xhr.dispatchEvent(new Event('loadend'));
|
|
safe.uboLog(logPrefix, `Prevented with response:\n${details.xhr.response}`);
|
|
});
|
|
}
|
|
getResponseHeader(headerName) {
|
|
const haystack = xhrInstances.get(this);
|
|
if ( haystack === undefined || this.readyState < this.HEADERS_RECEIVED ) {
|
|
return super.getResponseHeader(headerName);
|
|
}
|
|
const value = haystack.headers[headerName.toLowerCase()];
|
|
if ( value !== undefined && value !== '' ) { return value; }
|
|
return null;
|
|
}
|
|
getAllResponseHeaders() {
|
|
const haystack = xhrInstances.get(this);
|
|
if ( haystack === undefined || this.readyState < this.HEADERS_RECEIVED ) {
|
|
return super.getAllResponseHeaders();
|
|
}
|
|
const out = [];
|
|
for ( const [ name, value ] of Object.entries(haystack.headers) ) {
|
|
if ( !value ) { continue; }
|
|
out.push(`${name}: ${value}`);
|
|
}
|
|
if ( out.length !== 0 ) { out.push(''); }
|
|
return out.join('\r\n');
|
|
}
|
|
};
|
|
}
|
|
|
|
function generateContentFn(directive) {
|
|
const safe = safeSelf();
|
|
const randomize = len => {
|
|
const chunks = [];
|
|
let textSize = 0;
|
|
do {
|
|
const s = safe.Math_random().toString(36).slice(2);
|
|
chunks.push(s);
|
|
textSize += s.length;
|
|
}
|
|
while ( textSize < len );
|
|
return chunks.join(' ').slice(0, len);
|
|
};
|
|
if ( directive === 'true' ) {
|
|
return Promise.resolve(randomize(10));
|
|
}
|
|
if ( directive === 'emptyObj' ) {
|
|
return Promise.resolve('{}');
|
|
}
|
|
if ( directive === 'emptyArr' ) {
|
|
return Promise.resolve('[]');
|
|
}
|
|
if ( directive === 'emptyStr' ) {
|
|
return Promise.resolve('');
|
|
}
|
|
if ( directive.startsWith('length:') ) {
|
|
const match = /^length:(\d+)(?:-(\d+))?$/.exec(directive);
|
|
if ( match ) {
|
|
const min = parseInt(match[1], 10);
|
|
const extent = safe.Math_max(parseInt(match[2], 10) || 0, min) - min;
|
|
const len = safe.Math_min(min + extent * safe.Math_random(), 500000);
|
|
return Promise.resolve(randomize(len | 0));
|
|
}
|
|
}
|
|
if ( directive.startsWith('war:') && scriptletGlobals.warOrigin ) {
|
|
return new Promise(resolve => {
|
|
const warOrigin = scriptletGlobals.warOrigin;
|
|
const warName = directive.slice(4);
|
|
const fullpath = [ warOrigin, '/', warName ];
|
|
const warSecret = scriptletGlobals.warSecret;
|
|
if ( warSecret !== undefined ) {
|
|
fullpath.push('?secret=', warSecret);
|
|
}
|
|
const warXHR = new safe.XMLHttpRequest();
|
|
warXHR.responseType = 'text';
|
|
warXHR.onloadend = ev => {
|
|
resolve(ev.target.responseText || '');
|
|
};
|
|
warXHR.open('GET', fullpath.join(''));
|
|
warXHR.send();
|
|
});
|
|
}
|
|
return Promise.resolve('');
|
|
}
|
|
|
|
function matchObjectProperties(propNeedles, ...objs) {
|
|
if ( matchObjectProperties.extractProperties === undefined ) {
|
|
matchObjectProperties.extractProperties = (src, des, props) => {
|
|
for ( const p of props ) {
|
|
const v = src[p];
|
|
if ( v === undefined ) { continue; }
|
|
des[p] = src[p];
|
|
}
|
|
};
|
|
}
|
|
const safe = safeSelf();
|
|
const haystack = {};
|
|
const props = safe.Array_from(propNeedles.keys());
|
|
for ( const obj of objs ) {
|
|
if ( obj instanceof Object === false ) { continue; }
|
|
matchObjectProperties.extractProperties(obj, haystack, props);
|
|
}
|
|
for ( const [ prop, details ] of propNeedles ) {
|
|
let value = haystack[prop];
|
|
if ( value === undefined ) { continue; }
|
|
if ( typeof value !== 'string' ) {
|
|
try { value = safe.JSON_stringify(value); }
|
|
catch(ex) { }
|
|
if ( typeof value !== 'string' ) { continue; }
|
|
}
|
|
if ( safe.testPattern(details, value) ) { continue; }
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function parsePropertiesToMatch(propsToMatch, implicit = '') {
|
|
const safe = safeSelf();
|
|
const needles = new Map();
|
|
if ( propsToMatch === undefined || propsToMatch === '' ) { return needles; }
|
|
const options = { canNegate: true };
|
|
for ( const needle of propsToMatch.split(/\s+/) ) {
|
|
const [ prop, pattern ] = needle.split(':');
|
|
if ( prop === '' ) { continue; }
|
|
if ( pattern !== undefined ) {
|
|
needles.set(prop, safe.initPattern(pattern, options));
|
|
} else if ( implicit !== '' ) {
|
|
needles.set(implicit, safe.initPattern(prop, options));
|
|
}
|
|
}
|
|
return needles;
|
|
}
|
|
|
|
function safeSelf() {
|
|
if ( scriptletGlobals.safeSelf ) {
|
|
return scriptletGlobals.safeSelf;
|
|
}
|
|
const self = globalThis;
|
|
const safe = {
|
|
'Array_from': Array.from,
|
|
'Error': self.Error,
|
|
'Function_toStringFn': self.Function.prototype.toString,
|
|
'Function_toString': thisArg => safe.Function_toStringFn.call(thisArg),
|
|
'Math_floor': Math.floor,
|
|
'Math_max': Math.max,
|
|
'Math_min': Math.min,
|
|
'Math_random': Math.random,
|
|
'Object': Object,
|
|
'Object_defineProperty': Object.defineProperty.bind(Object),
|
|
'Object_defineProperties': Object.defineProperties.bind(Object),
|
|
'Object_fromEntries': Object.fromEntries.bind(Object),
|
|
'Object_getOwnPropertyDescriptor': Object.getOwnPropertyDescriptor.bind(Object),
|
|
'RegExp': self.RegExp,
|
|
'RegExp_test': self.RegExp.prototype.test,
|
|
'RegExp_exec': self.RegExp.prototype.exec,
|
|
'Request_clone': self.Request.prototype.clone,
|
|
'XMLHttpRequest': self.XMLHttpRequest,
|
|
'addEventListener': self.EventTarget.prototype.addEventListener,
|
|
'removeEventListener': self.EventTarget.prototype.removeEventListener,
|
|
'fetch': self.fetch,
|
|
'JSON': self.JSON,
|
|
'JSON_parseFn': self.JSON.parse,
|
|
'JSON_stringifyFn': self.JSON.stringify,
|
|
'JSON_parse': (...args) => safe.JSON_parseFn.call(safe.JSON, ...args),
|
|
'JSON_stringify': (...args) => safe.JSON_stringifyFn.call(safe.JSON, ...args),
|
|
'log': console.log.bind(console),
|
|
// Properties
|
|
logLevel: 0,
|
|
// Methods
|
|
makeLogPrefix(...args) {
|
|
return this.sendToLogger && `[${args.join(' \u205D ')}]` || '';
|
|
},
|
|
uboLog(...args) {
|
|
if ( this.sendToLogger === undefined ) { return; }
|
|
if ( args === undefined || args[0] === '' ) { return; }
|
|
return this.sendToLogger('info', ...args);
|
|
|
|
},
|
|
uboErr(...args) {
|
|
if ( this.sendToLogger === undefined ) { return; }
|
|
if ( args === undefined || args[0] === '' ) { return; }
|
|
return this.sendToLogger('error', ...args);
|
|
},
|
|
escapeRegexChars(s) {
|
|
return s.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
|
},
|
|
initPattern(pattern, options = {}) {
|
|
if ( pattern === '' ) {
|
|
return { matchAll: true };
|
|
}
|
|
const expect = (options.canNegate !== true || pattern.startsWith('!') === false);
|
|
if ( expect === false ) {
|
|
pattern = pattern.slice(1);
|
|
}
|
|
const match = /^\/(.+)\/([gimsu]*)$/.exec(pattern);
|
|
if ( match !== null ) {
|
|
return {
|
|
re: new this.RegExp(
|
|
match[1],
|
|
match[2] || options.flags
|
|
),
|
|
expect,
|
|
};
|
|
}
|
|
if ( options.flags !== undefined ) {
|
|
return {
|
|
re: new this.RegExp(this.escapeRegexChars(pattern),
|
|
options.flags
|
|
),
|
|
expect,
|
|
};
|
|
}
|
|
return { pattern, expect };
|
|
},
|
|
testPattern(details, haystack) {
|
|
if ( details.matchAll ) { return true; }
|
|
if ( details.re ) {
|
|
return this.RegExp_test.call(details.re, haystack) === details.expect;
|
|
}
|
|
return haystack.includes(details.pattern) === details.expect;
|
|
},
|
|
patternToRegex(pattern, flags = undefined, verbatim = false) {
|
|
if ( pattern === '' ) { return /^/; }
|
|
const match = /^\/(.+)\/([gimsu]*)$/.exec(pattern);
|
|
if ( match === null ) {
|
|
const reStr = this.escapeRegexChars(pattern);
|
|
return new RegExp(verbatim ? `^${reStr}$` : reStr, flags);
|
|
}
|
|
try {
|
|
return new RegExp(match[1], match[2] || undefined);
|
|
}
|
|
catch(ex) {
|
|
}
|
|
return /^/;
|
|
},
|
|
getExtraArgs(args, offset = 0) {
|
|
const entries = args.slice(offset).reduce((out, v, i, a) => {
|
|
if ( (i & 1) === 0 ) {
|
|
const rawValue = a[i+1];
|
|
const value = /^\d+$/.test(rawValue)
|
|
? parseInt(rawValue, 10)
|
|
: rawValue;
|
|
out.push([ a[i], value ]);
|
|
}
|
|
return out;
|
|
}, []);
|
|
return this.Object_fromEntries(entries);
|
|
},
|
|
onIdle(fn, options) {
|
|
if ( self.requestIdleCallback ) {
|
|
return self.requestIdleCallback(fn, options);
|
|
}
|
|
return self.requestAnimationFrame(fn);
|
|
},
|
|
};
|
|
scriptletGlobals.safeSelf = safe;
|
|
if ( scriptletGlobals.bcSecret === undefined ) { return safe; }
|
|
// This is executed only when the logger is opened
|
|
const bc = new self.BroadcastChannel(scriptletGlobals.bcSecret);
|
|
let bcBuffer = [];
|
|
safe.logLevel = scriptletGlobals.logLevel || 1;
|
|
safe.sendToLogger = (type, ...args) => {
|
|
if ( args.length === 0 ) { return; }
|
|
const text = `[${document.location.hostname || document.location.href}]${args.join(' ')}`;
|
|
if ( bcBuffer === undefined ) {
|
|
return bc.postMessage({ what: 'messageToLogger', type, text });
|
|
}
|
|
bcBuffer.push({ type, text });
|
|
};
|
|
bc.onmessage = ev => {
|
|
const msg = ev.data;
|
|
switch ( msg ) {
|
|
case 'iamready!':
|
|
if ( bcBuffer === undefined ) { break; }
|
|
bcBuffer.forEach(({ type, text }) =>
|
|
bc.postMessage({ what: 'messageToLogger', type, text })
|
|
);
|
|
bcBuffer = undefined;
|
|
break;
|
|
case 'setScriptletLogLevelToOne':
|
|
safe.logLevel = 1;
|
|
break;
|
|
case 'setScriptletLogLevelToTwo':
|
|
safe.logLevel = 2;
|
|
break;
|
|
}
|
|
};
|
|
bc.postMessage('areyouready?');
|
|
return safe;
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|
|
const hnParts = [];
|
|
try { hnParts.push(...document.location.hostname.split('.')); }
|
|
catch(ex) { }
|
|
const hnpartslen = hnParts.length;
|
|
if ( hnpartslen === 0 ) { return; }
|
|
|
|
const todoIndices = new Set();
|
|
const tonotdoIndices = [];
|
|
|
|
// Exceptions
|
|
if ( exceptionsMap.size !== 0 ) {
|
|
for ( let i = 0; i < hnpartslen; i++ ) {
|
|
const hn = hnParts.slice(i).join('.');
|
|
const excepted = exceptionsMap.get(hn);
|
|
if ( excepted ) { tonotdoIndices.push(...excepted); }
|
|
}
|
|
exceptionsMap.clear();
|
|
}
|
|
|
|
// Hostname-based
|
|
if ( hostnamesMap.size !== 0 ) {
|
|
const collectArgIndices = hn => {
|
|
let argsIndices = hostnamesMap.get(hn);
|
|
if ( argsIndices === undefined ) { return; }
|
|
if ( typeof argsIndices === 'number' ) { argsIndices = [ argsIndices ]; }
|
|
for ( const argsIndex of argsIndices ) {
|
|
if ( tonotdoIndices.includes(argsIndex) ) { continue; }
|
|
todoIndices.add(argsIndex);
|
|
}
|
|
};
|
|
for ( let i = 0; i < hnpartslen; i++ ) {
|
|
const hn = hnParts.slice(i).join('.');
|
|
collectArgIndices(hn);
|
|
}
|
|
collectArgIndices('*');
|
|
hostnamesMap.clear();
|
|
}
|
|
|
|
// Entity-based
|
|
if ( entitiesMap.size !== 0 ) {
|
|
const n = hnpartslen - 1;
|
|
for ( let i = 0; i < n; i++ ) {
|
|
for ( let j = n; j > i; j-- ) {
|
|
const en = hnParts.slice(i,j).join('.');
|
|
let argsIndices = entitiesMap.get(en);
|
|
if ( argsIndices === undefined ) { continue; }
|
|
if ( typeof argsIndices === 'number' ) { argsIndices = [ argsIndices ]; }
|
|
for ( const argsIndex of argsIndices ) {
|
|
if ( tonotdoIndices.includes(argsIndex) ) { continue; }
|
|
todoIndices.add(argsIndex);
|
|
}
|
|
}
|
|
}
|
|
entitiesMap.clear();
|
|
}
|
|
|
|
// Apply scriplets
|
|
for ( const i of todoIndices ) {
|
|
try { noXhrIf(...argsList[i]); }
|
|
catch(ex) {}
|
|
}
|
|
argsList.length = 0;
|
|
|
|
/******************************************************************************/
|
|
|
|
};
|
|
// End of code to inject
|
|
|
|
/******************************************************************************/
|
|
|
|
// Inject code
|
|
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=1736575
|
|
// 'MAIN' world not yet supported in Firefox, so we inject the code into
|
|
// 'MAIN' ourself when environment in Firefox.
|
|
|
|
const targetWorld = 'MAIN';
|
|
|
|
// Not Firefox
|
|
if ( typeof wrappedJSObject !== 'object' || targetWorld === 'ISOLATED' ) {
|
|
return uBOL_noXhrIf();
|
|
}
|
|
|
|
// Firefox
|
|
{
|
|
const page = self.wrappedJSObject;
|
|
let script, url;
|
|
try {
|
|
page.uBOL_noXhrIf = cloneInto([
|
|
[ '(', uBOL_noXhrIf.toString(), ')();' ],
|
|
{ type: 'text/javascript; charset=utf-8' },
|
|
], self);
|
|
const blob = new page.Blob(...page.uBOL_noXhrIf);
|
|
url = page.URL.createObjectURL(blob);
|
|
const doc = page.document;
|
|
script = doc.createElement('script');
|
|
script.async = false;
|
|
script.src = url;
|
|
(doc.head || doc.documentElement || doc).append(script);
|
|
} catch (ex) {
|
|
console.error(ex);
|
|
}
|
|
if ( url ) {
|
|
if ( script ) { script.remove(); }
|
|
page.URL.revokeObjectURL(url);
|
|
}
|
|
delete page.uBOL_noXhrIf;
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|
|
// End of local scope
|
|
})();
|
|
|
|
/******************************************************************************/
|
|
|
|
void 0;
|