neuzz icon indicating copy to clipboard operation
neuzz copied to clipboard

about the handling of crashes

Open yezihagendasi opened this issue 4 years ago • 2 comments

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!

yezihagendasi avatar Apr 22 '20 00:04 yezihagendasi

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"

Dongdongshe avatar May 12 '20 21:05 Dongdongshe

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.

yezihagendasi avatar Jun 21 '20 13:06 yezihagendasi