Skip to content
This repository was archived by the owner on May 16, 2025. It is now read-only.

Commit 3076ca0

Browse files
committed
Add proper support for non-raw memory samples where the page at offset 0 is missing
1 parent a1f7d19 commit 3076ca0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

volatility/plugins/overlays/basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def generate_suggestions(self):
221221
vm = self.obj_vm)
222222
if 'Idle\x00\x00\x00\x00\x00\x00\x00\x00' in proc.ImageFileName.v() and \
223223
int(proc.UniqueProcessId) == 0 and \
224-
proc.Peb.v() == 0:
224+
proc.Peb.v() in [None, 0]:
225225

226226
yield proc.Pcb.DirectoryTableBase.v()
227227

0 commit comments

Comments
 (0)