ogmini - Exploration of DFIR

Having fun while learning about and pivoting into the world of DFIR.


About Blog Posts by Tags Research CTF/Challenge GitHub RSS
10 August 2025

Application Settings Container - RegUwpDateTimeOffset Weirdness?

by ogmini

Been bouncing back and forth this weekend with @reece394 working on the ApplicationSettingsContainer. He has also been putting the plugin to use and came across an oddity relating to the RegUwpDateTimeOffset. You can follow and feel free to join the conversation at https://github.com/EricZimmerman/RegistryPlugins/pull/68.

We have determined that the RegUwpDateTimeOffset value is still an Int64 that could either represent:

  1. A Windows Filetime that counts the number of 100-nanosecond intervals since January 1, 1601 (UTC)
  2. A DateTime.Ticks that counts the number of 100-nanosecond intervals since January 1, 0001

Consequently, the registry plugin at the moment will just be displaying the Int64 with a note about the above. This leaves the human to determine which type it is and to convert appropriately. This should be a very simple task for a human as the different integers are very far apart. Generally, Windows FILETIME will start with a 1 and DateTime.Ticks will start with a 6. There are many tools/sites that can be used to convert.

https://ogmini.github.io/FILETIME_Converter_Page/ - Windows FILETIME Converter https://www.datetimetoticks-converter.com/ - DateTime.Ticks Converter

tags: #Registryhive #RegistryPlugins