Skip to content

Commit 3a4e622

Browse files
committed
Change pending checking and OS version
1 parent 1a2427b commit 3a4e622

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

volatility3/framework/plugins/windows/processghosting.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def _vad_checks(
9999
except exceptions.InvalidAddressException:
100100
delete_pending = None
101101

102-
if delete_pending and delete_pending == 1:
102+
if delete_pending == 1:
103103
yield file_object.vol.offset, delete_pending, None
104104

105105
@classmethod
@@ -158,7 +158,7 @@ def _generator(self, procs):
158158
)
159159
if not has_imagefilepointer:
160160
vollog.warning(
161-
"ImageFilePointer checks are only supported on Windows 10 builds when the ImageFilePointer member of _EPROCESS is present"
161+
"ImageFilePointer checks are only supported on Windows 10+ builds when the ImageFilePointer member of _EPROCESS is present"
162162
)
163163

164164
for proc in procs:

0 commit comments

Comments
 (0)