Is possible to collect crashes info without stopping a fuzzer? #887
Answered
by
sadovnikovsergey
sadovnikovsergey
asked this question in
Q&A
|
Hi, There is feature to save crashes samples using I am also interested in what role libFuzzer plays in fuzzing, namely, what causes the need to use it while jazzer works. |
Answered by
sadovnikovsergey
Dec 13, 2023
Replies: 1 comment 4 replies
|
Could you try Regarding libFuzzer: We use libFuzzer as the underlying fuzzing engine, e.g. to handle corpus management and track the fuzzer's progress via code instrumentation. |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Option
--keep_going=<some number>solves my problem, thanks!Can you suggest, if it possible, which class is responsible for the logic related to collecting coverage (I mean the connection between libFizzer and jazzer)?