I created DB from google chrome's Cookies file and one of the columns in the cookies
table is expires_utc
. The format of the column is like - 13169399213145330, which is more like unix time. But when i'm trying to use unix time converter, it gives wrong values.
So, what format is that and how i can convert it to actually unix time?
So, after long researches on this topic, here is the solution:
So, it's 11644473600 seconds before the UNIX epoch. To convert chrome's timestamp to UNIX, you need to:
expires_utc
column in cookies
table) by 1000000 // And someone should explain my why.