mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-27 12:04:50 +02:00
Convert all helper_ properties to get_ methods.
This commit is contained in:
@@ -103,7 +103,7 @@ class RegistryHive(interfaces.layers.TranslationLayerInterface):
|
||||
found_key = [] # type: typing.List[str]
|
||||
while key_array and node_key:
|
||||
for subkey in node_key.get_subkeys():
|
||||
if subkey.helper_name == key_array[0]:
|
||||
if subkey.get_name() == key_array[0]:
|
||||
node_key = subkey
|
||||
found_key, key_array = found_key + [key_array[0]], key_array[1:]
|
||||
break
|
||||
@@ -153,7 +153,7 @@ class RegistryHive(interfaces.layers.TranslationLayerInterface):
|
||||
|
||||
table = storage.Map.Directory[dir_index]
|
||||
entry = table.Table[table_index]
|
||||
return entry.helper_block_offset + suboffset
|
||||
return entry.get_block_offset() + suboffset
|
||||
|
||||
def mapping(self,
|
||||
offset: int,
|
||||
|
||||
Reference in New Issue
Block a user