You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!
The text was updated successfully, but these errors were encountered:
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" <notifications@github.com> 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.
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!
The text was updated successfully, but these errors were encountered: