Add Windows Search index (Windows.edb) support - #157
Merged
Merged
Conversation
Adds a windowsSearch artifact that reads the SystemIndex_PropertyStore table of Windows.edb, one row per indexed item: item path, name and URL, type, kind, size, and the gather, modified, created and accessed times the index recorded. Windows.edb is an ESE database read with the vendored impacket ESE reader. Some of its string properties are stored with ESE 7-bit compression, which impacket returned as None. scripts/vendor/impacket_ese.py now decodes that scheme. The change is additive and does not alter any value impacket already decoded, so the SRUM and WebCache artifacts read the same output as before. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds Windows Search index support for DLEAPP, from the SystemIndex_PropertyStore table of Windows.edb:
Windows.edb is an ESE database, and some of its string properties use ESE 7-bit compression the vendored impacket reader returned as None. scripts/vendor/impacket_ese.py now decodes that scheme; the change is additive and leaves the SRUM and WebCache artifacts unchanged. System_Size holds a placeholder on folders and other non-file items, reported blank. Windows 11 22H2 moved this index to Windows.db (SQLite), which is not read here.
🤖 Generated with Claude Code