fix missing kernel_base increment in low stub scanner

This commit is contained in:
Abyss Watcher
2025-11-10 22:10:24 +01:00
parent 3e2d831be3
commit 5ef5c027ec
+1 -1
View File
@@ -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