From 30141935875a7e5e6cf2665b1d82103a2ef2bd72 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sat, 22 Aug 2020 22:47:51 +0100 Subject: [PATCH] Windows: Fix poolscanner typo --- volatility/framework/plugins/windows/poolscanner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/plugins/windows/poolscanner.py b/volatility/framework/plugins/windows/poolscanner.py index 8f18d48a0..8513e33ae 100644 --- a/volatility/framework/plugins/windows/poolscanner.py +++ b/volatility/framework/plugins/windows/poolscanner.py @@ -89,7 +89,7 @@ class PoolHeaderScanner(interfaces.layers.ScannerInterface): checks_pass = True elif (constraint.page_type & PoolType.NONPAGED) and header.is_nonpaged_pool(): checks_pass = True - elif (constraint.page_type & PoolType.PAGED) and header.is_paged_pool: + elif (constraint.page_type & PoolType.PAGED) and header.is_paged_pool(): checks_pass = True if not checks_pass: