1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-19 11:18:42 +02:00

scriptlet arguments: allow any character, escape properly

This commit is contained in:
gorhill 2016-11-17 09:25:37 -05:00
parent 874289b9a2
commit 02f757e995

View File

@ -1433,8 +1433,7 @@ FilterContainer.prototype._fillupUserScript = function(content, args) {
while ( args !== '' ) {
pos = args.indexOf(',');
if ( pos === -1 ) { pos = args.length; }
arg = args.slice(0, pos).trim();
if ( this._reUserScriptBadArg.test(arg) ) { return; }
arg = args.slice(0, pos).trim().replace(this._reEscapeScriptArg, '\\$&');
content = content.replace('{{' + i + '}}', arg);
args = args.slice(pos + 1).trim();
i++;
@ -1442,7 +1441,7 @@ FilterContainer.prototype._fillupUserScript = function(content, args) {
return content;
};
FilterContainer.prototype._reUserScriptBadArg = /[^\w\.]/;
FilterContainer.prototype._reEscapeScriptArg = /[\\'"]/g;
/******************************************************************************/