mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-11 20:27:38 +02:00
use KSYM_NAME_LEN for symbol name length
This commit is contained in:
@@ -134,8 +134,8 @@ class module(generic.GenericIntelProcess):
|
||||
try:
|
||||
sym_offset = self.section_strtab + sym.st_name
|
||||
sym_name = self._context.layers[self.vol.layer_name].read(
|
||||
sym_offset, sym.st_size
|
||||
)
|
||||
sym_offset, 512
|
||||
) # 512 is the value of KSYM_NAME_LEN
|
||||
except exceptions.PagedInvalidAddressException:
|
||||
continue
|
||||
|
||||
|
||||
Reference in New Issue
Block a user