Skip to content

Instantly share code, notes, and snippets.

@williballenthin
Created January 15, 2014 20:24
Show Gist options
  • Save williballenthin/8443854 to your computer and use it in GitHub Desktop.
Save williballenthin/8443854 to your computer and use it in GitHub Desktop.
Decodes the DateCreated and DateLastCreated timestamp structures. See structure description here: http://cfed-ttf.blogspot.com/2009/08/decoding-datecreated-and.html
import sys
from datetime import datetime
import struct
buf = sys.stdin.read().rstrip("\r\n")
y, mo, w, d, h, mi, s, _ = struct.unpack("<HHHHHHHH", buf)
print datetime(y, mo, d, h, mi, s).isoformat("T") + "Z"
@williballenthin
Copy link
Author

Example:

~  » regfetch "HLKM\Software\Microsoft\Windows NT\CurrentVersion\NetworkList\Profiles\{GUID}" "DateCreated" | python DateLastConnected.py
2014-01-07T11:27:43Z

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment