We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ccb5581 + 28c74f8 commit ec48f04Copy full SHA for ec48f04
volatility3/framework/automagic/linux.py
@@ -71,6 +71,11 @@ def stack(
71
elif "init_level4_pgt" in table.symbols:
72
layer_class = intel.LinuxIntel32e
73
dtb_symbol_name = "init_level4_pgt"
74
+ elif "pkmap_count" in table.symbols and table.get_symbol(
75
+ "pkmap_count"
76
+ ).type.count in (512, 2048):
77
+ layer_class = intel.LinuxIntelPAE
78
+ dtb_symbol_name = "swapper_pg_dir"
79
else:
80
layer_class = intel.LinuxIntel
81
dtb_symbol_name = "swapper_pg_dir"
0 commit comments