neuzz
neuzz copied to clipboard
about the handling of crashes
Hello, I want to ask about the handling of crashes. How did you deal with these crashes? Are there any tools that can be used for reference? Thank you!
We use Address Sanitizer(ASan) to analyze those crashes. To build an asan-enabled binary, you can use clang and add "-fsanitize=address" to the CFLAG. If you want to diagnose the crashes found on example binaries from Neuzz corpus, use the compiler command like this: CC=gcc CFLAGS="-m32 -fsanitize=address"
Thanks, i will try it.
At 2020-05-13 05:12:37, "Dongdongshe" [email protected] wrote:
We use Address Sanitizer(ASan) to analyze those crashes. To build an asan-enabled binary, you can use clang and add "-fsanitize=address" to the CFLAG. If you want to diagnose the crashes found on example binaries from Neuzz corpus, use the compiler command like this: CC=gcc CFLAGS="-m32 -fsanitize=address"
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe.