mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-29 11:19:40 +02:00
Update hashdump.py
calling `<reg_key>.Name` returns array, changed to `<reg_key>.get_name()` which returns a string (the if statement in the code didn't work before this change)
This commit is contained in:
@@ -350,7 +350,7 @@ class Hashdump(interfaces.plugins.PluginInterface):
|
||||
|
||||
if not user_key:
|
||||
return []
|
||||
return [k for k in user_key.get_subkeys() if k.Name != "Names"]
|
||||
return [k for k in user_key.get_subkeys() if k.get_name() != "Names"]
|
||||
|
||||
@classmethod
|
||||
def get_bootkey(cls, syshive: registry_layer.RegistryHive) -> Optional[bytes]:
|
||||
|
||||
Reference in New Issue
Block a user