This repository was archived by the owner on Feb 8, 2023. It is now read-only.
This repository was archived by the owner on Feb 8, 2023. It is now read-only.
cookieHeader in getCookies is too smple #25
Open
Description
It does not comply with RFC since the space following the ; delimiter is optional. Ref https://tools.ietf.org/html/rfc6265#section-2.2
Could be changed to split( "; ?" );
; matches the character ; literally (case sensitive)
SP? matches the character SP literally (case sensitive)
? Quantifier — Matches between zero and one times, as many times as possible, giving back as needed
Metadata
Metadata
Assignees
Labels
No labels