1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-29 06:07:11 +02:00

Add advanced setting dnsResolveEnabled

Default to `true`.

Set to `false` to wholly disable calls to `dns.resolve()` (Firefox-
only). Disabling calls to `dns.resolve()` will prevent cname-uncloaking
and will limit ability to enforce `ipaddress` filter option.
This commit is contained in:
Raymond Hill 2024-09-19 08:43:54 -04:00
parent b01a418073
commit 760b2ffce6
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
3 changed files with 7 additions and 0 deletions

View File

@ -62,6 +62,7 @@ vAPI.Net = class extends vAPI.Net {
this.cnameIgnoreExceptions = true; this.cnameIgnoreExceptions = true;
this.cnameIgnoreRootDocument = true; this.cnameIgnoreRootDocument = true;
this.cnameReplayFullURL = false; this.cnameReplayFullURL = false;
this.dnsResolveEnabled = true;
} }
setOptions(options) { setOptions(options) {
@ -89,6 +90,9 @@ vAPI.Net = class extends vAPI.Net {
if ( 'cnameReplayFullURL' in options ) { if ( 'cnameReplayFullURL' in options ) {
this.cnameReplayFullURL = options.cnameReplayFullURL === true; this.cnameReplayFullURL = options.cnameReplayFullURL === true;
} }
if ( 'dnsResolveEnabled' in options ) {
this.dnsResolveEnabled = options.dnsResolveEnabled === true;
}
this.dnsList.fill(null); this.dnsList.fill(null);
this.dnsDict.clear(); this.dnsDict.clear();
} }
@ -256,6 +260,7 @@ vAPI.Net = class extends vAPI.Net {
} }
dnsShouldResolve(hn) { dnsShouldResolve(hn) {
if ( this.dnsResolveEnabled === false ) { return false; }
if ( hn === '' ) { return false; } if ( hn === '' ) { return false; }
const c0 = hn.charCodeAt(0); const c0 = hn.charCodeAt(0);
if ( c0 === 0x5B /* [ */ ) { return false; } if ( c0 === 0x5B /* [ */ ) { return false; }

View File

@ -66,6 +66,7 @@ const hiddenSettingsDefault = {
debugScriptletInjector: false, debugScriptletInjector: false,
differentialUpdate: true, differentialUpdate: true,
disableWebAssembly: false, disableWebAssembly: false,
dnsResolveEnabled: true,
extensionUpdateForceReload: false, extensionUpdateForceReload: false,
filterAuthorMode: false, filterAuthorMode: false,
loggerPopupType: 'popup', loggerPopupType: 'popup',

View File

@ -319,6 +319,7 @@ onBroadcast(msg => {
cnameIgnoreRootDocument: µbhs.cnameIgnoreRootDocument, cnameIgnoreRootDocument: µbhs.cnameIgnoreRootDocument,
cnameMaxTTL: µbhs.cnameMaxTTL, cnameMaxTTL: µbhs.cnameMaxTTL,
cnameReplayFullURL: µbhs.cnameReplayFullURL, cnameReplayFullURL: µbhs.cnameReplayFullURL,
dnsResolveEnabled: µbhs.dnsResolveEnabled,
}); });
}); });