mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-12 12:47:39 +02:00
Linux automagic: Add support for more recent init_top_pgt symbol.
This commit is contained in:
@@ -74,7 +74,10 @@ class LintelStacker(interfaces.automagic.StackerLayerInterface):
|
||||
progress_callback = progress_callback)
|
||||
|
||||
layer_class = intel.Intel # type: Type
|
||||
if 'init_level4_pgt' in table.symbols:
|
||||
if 'init_top_pgt' in table.symbols:
|
||||
layer_class = intel.Intel32e
|
||||
dtb_symbol_name = 'init_top_pgt'
|
||||
elif 'init_level4_pgt' in table.symbols:
|
||||
layer_class = intel.Intel32e
|
||||
dtb_symbol_name = 'init_level4_pgt'
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user