Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion volatility3/framework/automagic/windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,13 +199,24 @@ class WindowsIntelStacker(interfaces.automagic.StackerLayerInterface):
(
"Detecting Self-referential pointer for recent windows",
[DtbSelfRef64bit()],
[(0x150000, 0x150000), (0x550000, 0x1A0000), (0x900000, 0x100000)],
[
(0x150000, 0x150000),
(0x550000, 0x1A0000),
(0x900000, 0x100000),
],
),
(
"Older windows fixed location self-referential pointers",
[DtbSelfRefPae(), DtbSelfRef32bit(), DtbSelfRef64bitOldWindows()],
[(0x30000, 0x1000000)],
),
(
"Very large memory with high DTBs (slow)",
[DtbSelfRef64bit()],
[
(0xA00000, 0x5000000),
],
),
]

@classmethod
Expand Down
Loading