1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

Discard network filters containing invalid pattern characters

Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1146
This commit is contained in:
Raymond Hill 2021-06-26 12:12:25 -04:00
parent b41463d437
commit 4422c42788
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -113,6 +113,9 @@ const Parser = class {
this.rePlainHostname = /^(?:[\w-]+\.)*[a-z]+$/;
this.rePlainEntity = /^(?:[\w-]+\.)+\*$/;
this.reEntity = /^[^*]+\.\*$/;
// https://github.com/uBlockOrigin/uBlock-issues/issues/1146
// From https://codemirror.net/doc/manual.html#option_specialChars
this.reInvalidCharacters = /[\x00-\x1F\x7F-\x9F\xAD\u061C\u200B-\u200F\u2028\u2029\uFEFF\uFFF9-\uFFFC]/;
this.punycoder = new URL(self.location);
// TODO: mind maxTokenLength
this.reGoodRegexToken
@ -1126,6 +1129,7 @@ const Parser = class {
if ( len === 0 ) { return true; }
const patternIsRegex = this.patternIsRegex();
let pattern = this.getNetPattern();
if ( this.reInvalidCharacters.test(pattern) ) { return false; }
// Punycode hostname part of the pattern.
if ( patternIsRegex === false ) {
const match = this.reHostname.exec(pattern);