-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running cargo afl fuzz
with no instrumentation (-n
)
#496
Comments
@vasumv Could you share a link to the project you are fuzzing? |
I'm fuzzing a fairly large project called And here is the actual project that is being fuzzed: https://github.com/cedar-policy/cedar Maybe a simpler place to start would be the tutorial
|
There is no point in fuzzing with -n, will likely deprecate the option very soon… |
Depending on how the input generators are written, there may be a tradeoff between the instrumentation overhead and the benefits of coverage guidance. I'd like to understand this tradeoff, so I was wondering if there's an option to run purely random input generation. It seems like -n is what I'd want; if it's being deprecated, is there any alternative that I could use? |
I've been trying to run
cargo afl fuzz
without instrumentation (dumb mode) using the-n
flag and I'm encountering the following:I've set the
AFL_MAP_SIZE
to be larger than the target coverage map size, but I'm still encountering this error. I'm able to runcargo afl fuzz
on this target normally. Any suggestions? Thanks for the help.The text was updated successfully, but these errors were encountered: