5

I thought that my browser had to send a shared secret with every request. But after looking at the network inspector of Chrome, that seems not to be the case.

The secret seems to be stored in Local Storage as se:fkey (the format of the key seems to match [a-f0-9]{32},[0-9]{10}). However, I don't see it in the send headers:

enter image description here

enter image description here

How does StackOverflow know who I am?

Martin Thoma
  • 124,992
  • 159
  • 614
  • 958

1 Answers1

0

With:

  1. The only cookie that's used for authentication - acct.
  2. The fkey - a token for XSRF protection. See What is the fkey that's present on some pages and what does it do?. It's the value of an input with name="fkey".
double-beep
  • 5,031
  • 17
  • 33
  • 41