mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-26 03:24:50 +02:00
Convert all helper_ properties to get_ methods.
This commit is contained in:
@@ -22,12 +22,12 @@ class Modules(plugins.PluginInterface):
|
||||
for mod in self.list_modules():
|
||||
|
||||
try:
|
||||
BaseDllName = mod.BaseDllName.helper_string
|
||||
BaseDllName = mod.BaseDllName.get_string()
|
||||
except exceptions.InvalidAddressException:
|
||||
BaseDllName = ""
|
||||
|
||||
try:
|
||||
FullDllName = mod.FullDllName.helper_string
|
||||
FullDllName = mod.FullDllName.get_string()
|
||||
except exceptions.InvalidAddressException:
|
||||
FullDllName = ""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user