Skip to content

Commit

Permalink
Shield some code paths against potentially tampered global properties
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Jan 11, 2024
1 parent f6b7261 commit 534d877
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions assets/resources/scriptlets.js
Expand Up @@ -55,7 +55,10 @@ function safeSelf() {
'Math_max': Math.max,
'Math_min': Math.min,
'Math_random': Math.random,
'Object': Object,
'Object_defineProperty': Object.defineProperty.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,
Expand Down Expand Up @@ -137,7 +140,7 @@ function safeSelf() {
}
return out;
}, []);
return Object.fromEntries(entries);
return this.Object_fromEntries(entries);
},
};
scriptletGlobals.set('safeSelf', safe);
Expand Down Expand Up @@ -534,9 +537,9 @@ function setConstantCore(
// Support multiple trappers for the same property.
const trapProp = function(owner, prop, configurable, handler) {
if ( handler.init(configurable ? owner[prop] : cValue) === false ) { return; }
const odesc = Object.getOwnPropertyDescriptor(owner, prop);
const odesc = safe.Object_getOwnPropertyDescriptor(owner, prop);
let prevGetter, prevSetter;
if ( odesc instanceof Object ) {
if ( odesc instanceof safe.Object ) {
owner[prop] = cValue;
if ( odesc.get instanceof Function ) {
prevGetter = odesc.get;
Expand Down Expand Up @@ -589,7 +592,7 @@ function setConstantCore(
const prop = chain.slice(0, pos);
const v = owner[prop];
chain = chain.slice(pos + 1);
if ( v instanceof Object || typeof v === 'object' && v !== null ) {
if ( v instanceof safe.Object || typeof v === 'object' && v !== null ) {
trapChain(v, chain);
return;
}
Expand All @@ -604,7 +607,7 @@ function setConstantCore(
},
setter: function(a) {
this.v = a;
if ( a instanceof Object ) {
if ( a instanceof safe.Object ) {
trapChain(a, chain);
}
}
Expand Down Expand Up @@ -1476,11 +1479,12 @@ function addEventListenerDefuser(
const rePattern = safe.patternToRegex(pattern);
const log = shouldLog(extraArgs);
const debug = shouldDebug(extraArgs);
const targetElements = extraArgs.elements || undefined;
const targetSelector = extraArgs.elements || undefined;
const shouldPrevent = (thisArg, type, handler) => {
const matchesInstance = targetElements === undefined ||
Array.from(document.querySelectorAll(targetElements)).includes(thisArg);
if ( matchesInstance === false ) { return false; }
if ( targetSelector !== undefined ) {
const elems = Array.from(document.querySelectorAll(targetSelector));
if ( elems.includes(thisArg) === false ) { return false; }
}
const matchesType = safe.RegExp_test.call(reType, type);
const matchesHandler = safe.RegExp_test.call(rePattern, handler);
const matchesEither = matchesType || matchesHandler;
Expand Down Expand Up @@ -1919,11 +1923,11 @@ function noFetchIf(
'Content-Length': text.length,
}
});
Object.defineProperty(response, 'url', {
safe.Object_defineProperty(response, 'url', {
value: details.url
});
if ( responseType !== '' ) {
Object.defineProperty(response, 'type', {
safe.Object_defineProperty(response, 'type', {
value: responseType
});
}
Expand Down

0 comments on commit 534d877

Please sign in to comment.