the current egghunter for win10 wow64 fails to loop through the pages.
this is due to some missing PUSH EBX (0) before NtAccessCheckAndAuditAlarm.
without them, the syscall always fails and last error is set to INVALID_NAME.
tested on QuickZip 4.60 SEH exploit on win10.
after fixing the page loop, we noticed that this was not enough.
the egghunter has to reset EBX every loop with XOR EBX, EBX otherwise it will stop at offset 1 of the current page.
hey - sorry for the feedback, I have not forgotten about this - I will look at the issue and your fix very soon - thank you for your help and contribution ! :)
the current egghunter for win10 wow64 fails to loop through the pages. this is due to some missing
PUSH EBX
(0) beforeNtAccessCheckAndAuditAlarm
. without them, the syscall always fails and last error is set toINVALID_NAME
. tested on QuickZip 4.60 SEH exploit on win10.after fixing the page loop, we noticed that this was not enough. the egghunter has to reset
EBX
every loop withXOR EBX, EBX
otherwise it will stop at offset 1 of the current page.