-
Notifications
You must be signed in to change notification settings - Fork 364
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
REG_BINARY #2111
Comments
The idea behind this is that most binary values need additional interpretation. Plaso is tool to create timelines not a tool to "dump" the contents of Windows Registry files. If you want specific binary data interpreted I opt to create a Windows Registry plugin. |
Additional question - why do you want to see REG_BINARY data in the timeline? Is the idea to look for malware stored in the registry? Would an indication of the size of the data be useful? |
i am looking to parse the creation of date from the reg_binary of trusted record document registry key so as to find evidence of the creation time if the document got deleted and the MFT record get over written. http://az4n6.blogspot.com/2016/02/more-on-trust-records-macros-and.html I will try to explore writing a parser on a my free time if possible. Thanks! |
Yeah if you want to parse the FILETIME value from the binary data and add it to the timeline you'll need to parse the binary data. Have a look at a relatively comparable Windows Registry parser plugin: Seeing we are in the middle of migration of construct to dtFabric, the documentation of dtFabric is still a bit sparse. Do not hesitate to reach out when you're hitting road blocks. If you need inspiration regarding a more stand-alone solution that can easily be ported to plaso, have a look at https://github.com/libyal/winreg-kb |
What will help us to implement support for this is test data you can share. If you cannot share full files, dfWinReg can provide a virtual Windows Registry for testing (see https://github.com/log2timeline/plaso/blob/master/tests/parsers/winreg_plugins/appcompatcache.py#L266 for an example) so a representative example of different versions of the key, its subkeys and values and data would suffice. |
No update from reporter, closing issue. |
Values such as REG_DWORD, REG_SZ are dumped out by default for winreg parser.
However, REG_BINARY values are not being dumped out for registry key values without a specific parser plugin.
So, is there any way to dump REG_BINARY?
The text was updated successfully, but these errors were encountered: