mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-12 04:37:38 +02:00
Poolscanners: Fix symlink pool types
Fixes regression introduced in #1632 Symbolic links are allocated in the paged pools, not non-paged. This was causing us to miss symlinks across both pre and post win8 samples.
This commit is contained in:
@@ -343,7 +343,7 @@ class PoolScanner(plugins.PluginInterface):
|
||||
type_name=symbol_table + constants.BANG + "_OBJECT_SYMBOLIC_LINK",
|
||||
object_type="SymbolicLink",
|
||||
size=(72, None),
|
||||
page_type=PoolType.NONPAGED | PoolType.FREE,
|
||||
page_type=PoolType.PAGED | PoolType.FREE,
|
||||
),
|
||||
# symlinks on windows starting with windows 8
|
||||
PoolConstraint(
|
||||
@@ -351,7 +351,7 @@ class PoolScanner(plugins.PluginInterface):
|
||||
type_name=symbol_table + constants.BANG + "_OBJECT_SYMBOLIC_LINK",
|
||||
object_type="SymbolicLink",
|
||||
size=(72, None),
|
||||
page_type=PoolType.NONPAGED | PoolType.FREE,
|
||||
page_type=PoolType.PAGED | PoolType.FREE,
|
||||
),
|
||||
# registry hives
|
||||
PoolConstraint(
|
||||
|
||||
Reference in New Issue
Block a user