﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
24634	Comma as a cookie separator in HTTP_COOKIES is not handled correctly	Piotr Maliński	nobody	"RFC https://www.ietf.org/rfc/rfc2109.txt states:
{{{
A server should also accept comma (,) as the separator between cookie-values for future compatibility.
}}}

And now Skype WISPr and iPassConnect user agents are using this separator and the cookies are not handled by Django correctly. A simple test:


{{{
client = test.Client(HTTP_COOKIE='zz=a,zzz=b,zzzz=c')
client.get('/')
}}}
Ends up with:

{{{
{'zz': 'a,zzz=b,zzzz=c'}
}}}
as request.COOKIES in Django."	Uncategorized	closed	Uncategorized	1.7	Normal	invalid			Unreviewed	0	0	0	0	0	0
