Skip to content

Commit b3c53fd

Browse files
authored
Merge pull request #1812 from JakePeralta7/develop
Minor fix to Hashdump.get_user_keys()
2 parents b414ee3 + dc34070 commit b3c53fd

File tree

1 file changed

+1
-1
lines changed
  • volatility3/framework/plugins/windows/registry

1 file changed

+1
-1
lines changed

volatility3/framework/plugins/windows/registry/hashdump.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ def get_user_keys(
350350

351351
if not user_key:
352352
return []
353-
return [k for k in user_key.get_subkeys() if k.Name != "Names"]
353+
return [k for k in user_key.get_subkeys() if k.get_name() != "Names"]
354354

355355
@classmethod
356356
def get_bootkey(cls, syshive: registry_layer.RegistryHive) -> Optional[bytes]:

0 commit comments

Comments
 (0)