We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 64d55bf + 996875c commit d1c5fc2Copy full SHA for d1c5fc2
volatility3/framework/plugins/windows/registry/printkey.py
@@ -20,7 +20,7 @@ class PrintKey(interfaces.plugins.PluginInterface):
20
"""Lists the registry keys under a hive or specific key value."""
21
22
_required_framework_version = (2, 0, 0)
23
- _version = (1, 0, 0)
+ _version = (1, 1, 0)
24
25
@classmethod
26
def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]:
@@ -282,7 +282,7 @@ def _registry_walker(
282
renderers.UnreadableValue(),
283
format_hints.Hex(hive.hive_offset),
284
"Key",
285
- "?\\" + (key or ""),
+ f"{hive.get_name()}\\" + (key or ""),
286
287
288
0 commit comments