mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-06 09:47:38 +02:00
fix missing kernel_base increment in low stub scanner
This commit is contained in:
@@ -450,7 +450,7 @@ class KernelPDBScanner(interfaces.automagic.AutomagicInterface):
|
||||
while (kernel_base + 0x2000000) > kernel_hint:
|
||||
for i in range(0, 0x200000, 0x1000):
|
||||
valid_kernel = self.check_kernel_offset(
|
||||
context, vlayer, kernel_base, progress_callback
|
||||
context, vlayer, kernel_base + i, progress_callback
|
||||
)
|
||||
if valid_kernel:
|
||||
return valid_kernel
|
||||
|
||||
Reference in New Issue
Block a user