Is possible to collect crashes info without stopping a fuzzer? #887
-
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. |
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
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)?