Are sub-domain cookies sent in a parent domain HTTP request?
For instance, say I have the cookies:
Name Value Domain (not https)
ABC 1
The cookies of a subdomain only get sent if they were set with a domain with a leading dot on the level above it. So if www.example.com sets a cookie with domain ".example.com" then it gets sent, otherwise not.
The other way around is more confusing, the cookie set in the top level domain should only get sent to subdomains if it has the leading dot but if you are using internet explorer it will also send it if it got sent without the leading dot (ref).
No. It's the other way around: parent-domain cookies are sent in sub-domain HTTP requests.
The leading dot in the domain value .example.com
means example.com and its subdomains. Without the leading dot, the cookie is only valid for this specific domain.
Note that when setting a cookie, domain values without a leading dot will be prepended with a dot. Only when the domain parameter is not set the user agent assumes the current domain for that cookie.
So in this case, if http://example.com/
is requested, only the cookie for .example.com
will be sent. But in case of http://foo.example.com/
, both cookies for .example.com
and foo.example.com
will be sent. And in case of http://bla.foo.example.com
, only the cookie for .example.com
will be sent.