Closed hardik05 closed 1 year ago
Thank you for the detailed report! This error means that your fuzzing module is trying to access memory that isn't accessible in the dump file; so either there's something buggy about the logic you have in there (when inserting the testcase, etc.) or the logic is right but you are trying to access a page that isn't included in the dump for another reason.
The fuzzer module source-code & state folder would be enough for me to reproduce / debug this the fastest yes :)
Cheers
I have sorted this out. basically program had 1024 bytes of buffer while on running server I was giving max length as 100000(i just copy pasted server.bat from other example so missed this) after I corrected server.bat this is working fine. Thank you so much for responding..
not a bug.
Hehe cool, so you were overflowing your buffer :) and no worries.
Cheers
I created a simple fuzzer and used a program here:https://github.com/hardik05/Damn_Vulnerable_C_Program while this works fine for few seconds, i get following error : Translation of GVA 0x1cdbb0e2000 failed
here is the server output:
here is the client output:
This ProcessImage is getting executed random times, some i get this GVA error after 2 iteration sometime it works for like 10-20 times.. i am not sure what is the issue, i tred taking snapshot couple of times but no luck..
i can share snapshot+harness+compiled wtf if needed in DM if that helps?