Passing coverage information back to libfuzzer #483
TheCoryBarker
started this conversation in
General
Replies: 2 comments
-
The Java part of the coverage instrumentation just uses |
Beta Was this translation helpful? Give feedback.
0 replies
-
I see, thank you Fabian |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I was hoping someone could help me understand how CoverageMap.recordCoverage(final int id) passes back the covered edges information back to libFuzzer. I see the line below at overageMap.recordCoverage:
UNSAFE.putByte(address, (byte) (counter == -1 ? 1 : counter + 1));
how does that information get to libFuzzer?
Thank you
Beta Was this translation helpful? Give feedback.
All reactions