When multiple Cookie headers are present in an HTTP request, they are concatenated with a comma (,) separator instead of the correct semicolon-space ("; ") separator required by RFC 6265.
Example:
Cookie: session=abc123
Cookie: user=john
Current behavior:
HTTP_COOKIE = "session=abc123,user=john"
Expected behavior:
HTTP_COOKIE = "session=abc123; user=john"
When multiple
Cookieheaders are present in an HTTP request, they are concatenated with a comma (,) separator instead of the correct semicolon-space ("; ") separator required by RFC 6265.Example:
Current behavior:
Expected behavior: