mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
Improve [trusted-]set-cookie
scriptlets
As per RFC 6265 the characters ", should be encoded but apparently browsers don't care. Remove them from the set of characters which presence trigger encoding. Related feedback: https://github.com/uBlockOrigin/uBlock-issues/issues/3178#issuecomment-2029622321
This commit is contained in:
parent
08aa3ebe10
commit
49ff7cffb1
1 changed files with 3 additions and 1 deletions
|
@ -975,7 +975,9 @@ function setCookieFn(
|
|||
name = encodeURIComponent(name);
|
||||
}
|
||||
// https://datatracker.ietf.org/doc/html/rfc6265#section-4.1.1
|
||||
if ( /[^!#-+\--:<-[\]-~]/.test(value) ) {
|
||||
// The characters [",] are given a pass from the RFC requirements because
|
||||
// apparently browsers do not follow the RFC to the letter.
|
||||
if ( /[^!-:<-[\]-~]/.test(value) ) {
|
||||
value = encodeURIComponent(value);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue