Skip to content
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
@mvkendall

Description

@mvkendall

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions