| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 91 /** | 91 /** |
| 92 * Regular expression that RegExp filters specified as RegExps should match | 92 * Regular expression that RegExp filters specified as RegExps should match |
| 93 * @type {RegExp} | 93 * @type {RegExp} |
| 94 */ | 94 */ |
| 95 Filter.regexpRegExp = /^(@@)?\/.*\/(?:\$~?[\w-]+(?:=[^,\s]+)?(?:,~?[\w-]+(?:=[^, \s]+)?)*)?$/; | 95 Filter.regexpRegExp = /^(@@)?\/.*\/(?:\$~?[\w-]+(?:=[^,\s]+)?(?:,~?[\w-]+(?:=[^, \s]+)?)*)?$/; |
| 96 /** | 96 /** |
| 97 * Regular expression that options on a RegExp filter should match | 97 * Regular expression that options on a RegExp filter should match |
| 98 * @type {RegExp} | 98 * @type {RegExp} |
| 99 */ | 99 */ |
| 100 Filter.optionsRegExp = /\$(~?[\w-]+(?:=[^,]+)?(?:,~?[\w-]+(?:=[^,]+)?)*)$/; | 100 Filter.optionsRegExp = /\$(~?[\w-]+(?:=[^,]+)?(?:,~?[\w-]+(?:=[^,]+)?)*)$/; |
| 101 /** | |
| 102 * Regular expression that matches an invalid Content Security Policy | |
| 103 * @type {RegExp} | |
| 104 */ | |
| 105 Filter.invalidCSPRegExp = /(;|^) ?(base-uri|referrer|report-to|report-uri|upgrad e-insecure-requests)\b/i; | |
| 101 | 106 |
| 102 /** | 107 /** |
| 103 * Creates a filter of correct type from its text representation - does the | 108 * Creates a filter of correct type from its text representation - does the |
| 104 * basic parsing and calls the right constructor then. | 109 * basic parsing and calls the right constructor then. |
| 105 * | 110 * |
| 106 * @param {string} text as in Filter() | 111 * @param {string} text as in Filter() |
| 107 * @return {Filter} | 112 * @return {Filter} |
| 108 */ | 113 */ |
| 109 Filter.fromText = function(text) | 114 Filter.fromText = function(text) |
| 110 { | 115 { |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 165 * Removes unnecessary whitespaces from filter text, will only return null if | 170 * Removes unnecessary whitespaces from filter text, will only return null if |
| 166 * the input parameter is null. | 171 * the input parameter is null. |
| 167 * @param {string} text | 172 * @param {string} text |
| 168 * @return {string} | 173 * @return {string} |
| 169 */ | 174 */ |
| 170 Filter.normalize = function(text) | 175 Filter.normalize = function(text) |
| 171 { | 176 { |
| 172 if (!text) | 177 if (!text) |
| 173 return text; | 178 return text; |
| 174 | 179 |
| 175 // Remove line breaks and such | 180 // Remove line breaks, tabs etc |
| 176 text = text.replace(/[^\S ]/g, ""); | 181 text = text.replace(/[^\S ]+/g, ""); |
| 177 | 182 |
| 178 // Don't remove spaces inside comments | 183 // Don't remove spaces inside comments |
| 179 if (/^ *!/.test(text)) | 184 if (/^ *!/.test(text)) |
| 180 return text.trim(); | 185 return text.trim(); |
| 181 | 186 |
| 182 // Special treatment for element hiding filters, right side is allowed to | 187 // Special treatment for element hiding filters, right side is allowed to |
| 183 // contain spaces | 188 // contain spaces |
| 184 if (Filter.elemhideRegExp.test(text)) | 189 if (Filter.elemhideRegExp.test(text)) |
| 185 { | 190 { |
| 186 let [, domain, separator, selector] = /^(.*?)(#@?#?)(.*)$/.exec(text); | 191 let [, domain, separator, selector] = /^(.*?)(#@?#?)(.*)$/.exec(text); |
| 187 return domain.replace(/ /g, "") + separator + selector.trim(); | 192 return domain.replace(/ +/g, "") + separator + selector.trim(); |
|
Manish Jethani
2018/03/14 15:27:30
By the way, I tried to find out if / +/g is any be
kzar
2018/03/14 17:28:59
Done.
| |
| 188 } | 193 } |
| 189 | 194 |
| 190 // For most regexp filters we strip all whitespace. | 195 // For most regexp filters we strip all spaces, but $csp filter options |
| 191 let strippedText = text.replace(/ /g, ""); | 196 // are allowed to contain single (non trailing) spaces. |
| 192 if (!/csp=/i.test(strippedText)) | 197 let strippedText = text.replace(/ +/g, ""); |
|
Manish Jethani
2018/03/14 18:10:50
So how about adding another check here:
if (str
kzar
2018/03/14 19:48:24
Seems you're right, of 65k filters EasyList has 47
| |
| 198 if (!strippedText.includes("$") || !/\bcsp=/i.test(strippedText)) | |
| 193 return strippedText; | 199 return strippedText; |
| 194 | 200 |
| 195 let optionsMatch = Filter.optionsRegExp.exec(strippedText); | 201 let optionsMatch = Filter.optionsRegExp.exec(strippedText); |
| 196 if (!optionsMatch) | 202 if (!optionsMatch) |
| 197 return strippedText; | 203 return strippedText; |
| 198 | 204 |
| 199 // But since the values of $csp filter options are allowed to contain single | 205 // For $csp filters we must first separate out the options part of the |
| 200 // (non trailing) spaces we have to be more careful if they might be present. | 206 // text, being careful to preserve its spaces. |
| 201 let beforeOptions = strippedText.substring(0, optionsMatch.index); | 207 let beforeOptions = strippedText.substring(0, optionsMatch.index); |
| 202 let optionsText = text; | 208 let strippedDollarIndex = -1; |
| 203 for (let i = beforeOptions.split("$").length; i > 0; i--) | 209 let dollarIndex = -1; |
|
Manish Jethani
2018/03/14 18:10:50
Could you explain this part? I'm not sure what thi
kzar
2018/03/14 19:48:24
This code uses the index of the options part of th
| |
| 204 optionsText = optionsText.substr(optionsText.indexOf("$") + 1); | 210 do |
| 205 | 211 { |
| 206 let options = []; | 212 strippedDollarIndex = beforeOptions.indexOf("$", strippedDollarIndex + 1); |
|
Manish Jethani
2018/03/14 18:10:50
Why create a separate array for the stripped versi
kzar
2018/03/14 19:48:24
Done.
| |
| 207 for (let option of optionsText.split(",")) | 213 dollarIndex = text.indexOf("$", dollarIndex + 1); |
| 208 { | 214 } |
| 209 let cspMatch = /^( *c *s *p *=)([^,]+)/i.exec(option); | 215 while (strippedDollarIndex != -1); |
|
Manish Jethani
2018/03/14 18:10:50
The regular expression here could be /^( *c *s *p
kzar
2018/03/14 19:48:24
Done.
| |
| 216 let optionsText = text.substr(dollarIndex + 1); | |
| 217 | |
| 218 // Then we can normalize spaces in the options part safely | |
| 219 let options = optionsText.split(","); | |
| 220 for (let i = 0; i < options.length; i++) | |
| 221 { | |
| 222 let option = options[i]; | |
| 223 let cspMatch = /^ *c *s *p *=/i.exec(option); | |
| 210 if (cspMatch) | 224 if (cspMatch) |
| 211 { | 225 { |
| 212 options.push( | 226 options[i] = cspMatch[0].replace(/ +/g, "") + |
| 213 cspMatch[1].replace(/ /g, "") + cspMatch[2].trim().replace(/ +/g, " ") | 227 option.substr(cspMatch[0].length).trim().replace(/ +/g, " "); |
| 214 ); | |
| 215 } | 228 } |
| 216 else | 229 else |
| 217 options.push(option.replace(/ /g, "")); | 230 options[i] = option.replace(/ +/g, ""); |
| 218 } | 231 } |
| 219 | 232 |
| 220 return beforeOptions + "$" + options.join(); | 233 return beforeOptions + "$" + options.join(); |
| 221 }; | 234 }; |
| 222 | 235 |
| 223 /** | 236 /** |
| 224 * @see filterToRegExp | 237 * @see filterToRegExp |
| 225 */ | 238 */ |
| 226 Filter.toRegExp = filterToRegExp; | 239 Filter.toRegExp = filterToRegExp; |
| 227 | 240 |
| (...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 774 option = option.substr(0, separatorIndex); | 787 option = option.substr(0, separatorIndex); |
| 775 } | 788 } |
| 776 option = option.replace(/-/, "_").toUpperCase(); | 789 option = option.replace(/-/, "_").toUpperCase(); |
| 777 if (option in RegExpFilter.typeMap) | 790 if (option in RegExpFilter.typeMap) |
| 778 { | 791 { |
| 779 if (contentType == null) | 792 if (contentType == null) |
| 780 contentType = 0; | 793 contentType = 0; |
| 781 contentType |= RegExpFilter.typeMap[option]; | 794 contentType |= RegExpFilter.typeMap[option]; |
| 782 | 795 |
| 783 if (option == "CSP" && typeof value != "undefined") | 796 if (option == "CSP" && typeof value != "undefined") |
| 784 { | 797 csp = value; |
| 785 if (csp) | |
| 786 csp.push(value); | |
| 787 else | |
| 788 csp = [value]; | |
| 789 } | |
| 790 } | 798 } |
| 791 else if (option[0] == "~" && option.substr(1) in RegExpFilter.typeMap) | 799 else if (option[0] == "~" && option.substr(1) in RegExpFilter.typeMap) |
| 792 { | 800 { |
| 793 if (contentType == null) | 801 if (contentType == null) |
| 794 ({contentType} = RegExpFilter.prototype); | 802 ({contentType} = RegExpFilter.prototype); |
| 795 contentType &= ~RegExpFilter.typeMap[option.substr(1)]; | 803 contentType &= ~RegExpFilter.typeMap[option.substr(1)]; |
| 796 } | 804 } |
| 797 else if (option == "MATCH_CASE") | 805 else if (option == "MATCH_CASE") |
| 798 matchCase = true; | 806 matchCase = true; |
| 799 else if (option == "~MATCH_CASE") | 807 else if (option == "~MATCH_CASE") |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 812 sitekeys = value.toUpperCase(); | 820 sitekeys = value.toUpperCase(); |
| 813 else | 821 else |
| 814 return new InvalidFilter(origText, "filter_unknown_option"); | 822 return new InvalidFilter(origText, "filter_unknown_option"); |
| 815 } | 823 } |
| 816 } | 824 } |
| 817 | 825 |
| 818 try | 826 try |
| 819 { | 827 { |
| 820 if (blocking) | 828 if (blocking) |
| 821 { | 829 { |
| 822 if (csp) | 830 if (csp && Filter.invalidCSPRegExp.test(csp)) |
| 823 { | 831 return new InvalidFilter(origText, "filter_invalid_csp"); |
| 824 csp = csp.join("; ").toLowerCase(); | |
| 825 | |
| 826 // Prevent filters from injecting report-uri or report-to directives | |
| 827 // since they are a privacy concern. Regexp based upon reBadCSP[1]. | |
| 828 // [1] - https://github.com/gorhill/uBlock/blob/67e06f53b4d73df6179f6d32 0553a55da4ead40e/src/js/static-net-filtering.js#L1362 | |
| 829 if (/(;|^)\s*report-(to|uri)\b/.test(csp)) | |
| 830 return new InvalidFilter(origText, "filter_invalid_csp"); | |
| 831 } | |
| 832 | 832 |
| 833 return new BlockingFilter(origText, text, contentType, matchCase, domains, | 833 return new BlockingFilter(origText, text, contentType, matchCase, domains, |
| 834 thirdParty, sitekeys, collapse, csp); | 834 thirdParty, sitekeys, collapse, csp); |
| 835 } | 835 } |
| 836 return new WhitelistFilter(origText, text, contentType, matchCase, domains, | 836 return new WhitelistFilter(origText, text, contentType, matchCase, domains, |
| 837 thirdParty, sitekeys); | 837 thirdParty, sitekeys); |
| 838 } | 838 } |
| 839 catch (e) | 839 catch (e) |
| 840 { | 840 { |
| 841 return new InvalidFilter(origText, "filter_invalid_regexp"); | 841 return new InvalidFilter(origText, "filter_invalid_regexp"); |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1080 */ | 1080 */ |
| 1081 function ElemHideEmulationFilter(text, domains, selector) | 1081 function ElemHideEmulationFilter(text, domains, selector) |
| 1082 { | 1082 { |
| 1083 ElemHideBase.call(this, text, domains, selector); | 1083 ElemHideBase.call(this, text, domains, selector); |
| 1084 } | 1084 } |
| 1085 exports.ElemHideEmulationFilter = ElemHideEmulationFilter; | 1085 exports.ElemHideEmulationFilter = ElemHideEmulationFilter; |
| 1086 | 1086 |
| 1087 ElemHideEmulationFilter.prototype = extend(ElemHideBase, { | 1087 ElemHideEmulationFilter.prototype = extend(ElemHideBase, { |
| 1088 type: "elemhideemulation" | 1088 type: "elemhideemulation" |
| 1089 }); | 1089 }); |
| LEFT | RIGHT |