Seems Chrome has addressed the issue with incognito mode - if you open the page in incognito mode you get a different code.
HSTS Super Cookies
11–20 of 56 posts
Re: HSTS Super Cookies
#12Seems Chrome has addressed the issue with incognito mode - if you open the page in incognito mode you get a different code.
Re: HSTS Super Cookies
#13Seems Chrome has addressed the issue with incognito mode - if you open the page in incognito mode you get a different code.
Re: HSTS Super Cookies
#14 echo "SELECT * FROM moz_hosts WHERE type='sts/use';" | sqlite3 permissions.sqlite
from inside your profile directory.To clear HSTS entries (which the "Clear recent history" UI does not delete), you can do:
echo "DELETE FROM moz_hosts WHERE type='sts/use';" | sqlite3 permissions.sqlite
I've been periodically monitoring this database for HSTS supercookies over the last couple years and have yet to see any in the wild.Re: HSTS Super Cookies
#15I have Chromium set to delete browsing data on close. The HSTS Cookie survives that. Manually deleting browsing data kills it.
That would somehome indicate to me (without having looked at the code), that this has been implemented like this on purpose.
Re: HSTS Super Cookies
#16This privacy risk is actually documented in the official HSTS specification, section 16.9 of https://www.rfc-editor.org/rfc/rfc6797.txt However, the spec doesn't propose a mitigation for it. I'm afraid many new security policy mechanisms can actually be used to track users or devices this way, because you can experiment to see whether the browser has heard about a particular security policy by observing its behavior…
The HPKP tracking problem is described in section 5 https://datatracker.ietf.org/doc/draft-ietf-websec-key-pinni... which also includes another description of this HSTS problem.
http://www.chromium.org/Home/chromium-security/client-identi...
Re: HSTS Super Cookies
#17Seems Chrome has addressed the issue with incognito mode - if you open the page in incognito mode you get a different code.
Re: HSTS Super Cookies
#18Earlier quoted context omitted.
The HPKP tracking problem is described in section 5 https://datatracker.ietf.org/doc/draft-ietf-websec-key-pinni... which also includes another description of this HSTS problem.
We also have a pretty comprehensive discussion of this and many other vectors in: http://www.chromium.org/Home/chromium-security/client-identi...
Re: HSTS Super Cookies
#19I've always thought that (despite user hopes) the point of 'private' browsing was explicitly and only to avoid leaving traces on the user's computer anyway. (For example, I used it when shopping for Christmas presents.) The Firefox new private window has a warning to this effect:
> While this computer won't have a record of your browsing history, your employer or internet service provider can still track the pages you visit.
Re: HSTS Super Cookies
#20Very clever!