Skip to content

Commit

Permalink
#1298 - include hive name in key path
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Lassalle committed Oct 7, 2024
1 parent 9477d16 commit 996875c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions volatility3/framework/plugins/windows/registry/printkey.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class PrintKey(interfaces.plugins.PluginInterface):
"""Lists the registry keys under a hive or specific key value."""

_required_framework_version = (2, 0, 0)
_version = (1, 0, 0)
_version = (1, 1, 0)

@classmethod
def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]:
Expand Down Expand Up @@ -282,7 +282,7 @@ def _registry_walker(
renderers.UnreadableValue(),
format_hints.Hex(hive.hive_offset),
"Key",
"?\\" + (key or ""),
f"{hive.get_name()}\\" + (key or ""),
renderers.UnreadableValue(),
renderers.UnreadableValue(),
renderers.UnreadableValue(),
Expand Down

0 comments on commit 996875c

Please sign in to comment.