Create wow64_peb

This commit is contained in:
yardenshafir
2022-08-06 12:59:13 -04:00
committed by GitHub
parent 450f4eca9f
commit 8cf49f080e
+3
View File
@@ -0,0 +1,3 @@
# get the 64-bit and 32-bit PEB for all WoW64 processes
dx -g @$cursession.Processes.Where(p => p.KernelObject.WoW64Process).Select(p => new {Name = p.Name, Peb = p.KernelObject.Peb, Peb32 = p.KernelObject.WoW64Process->Peb})