0

I have a local ASP.NET app using Forms authentication.

I'd like to know where this cookie is coming from:

enter image description here

I looked in C:\Users\<username>\AppData\Local\Google\Chrome\User Data\Default but have no idea how to work out which file the cookie is stored in.

How can I find out what file the cookie is stored in?

Jamshaid K.
  • 3,555
  • 1
  • 27
  • 42
David Klempfner
  • 8,700
  • 20
  • 73
  • 153

1 Answers1

1

On Windows, Google Chrome stores cookies in:

C:\Users\Your User Name\AppData\Local\Google\Chrome\User Data\Default\Cookies

This is a sqlite database

See: Where does Chrome store cookies? and Encrypted cookies in Chrome

Jonathan
  • 4,916
  • 2
  • 20
  • 37