-
-
Notifications
You must be signed in to change notification settings - Fork 330
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
AFL++ redqueen update #1291
AFL++ redqueen update #1291
Conversation
@@ -346,7 +346,7 @@ fn fuzz( | |||
cmplog_shmem.write_to_env("__AFL_CMPLOG_SHM_ID").unwrap(); | |||
let cmpmap = unsafe { cmplog_shmem.as_object_mut::<AFLppCmpMap>() }; | |||
|
|||
let cmplog_observer = StdCmpObserver::new("cmplog", cmpmap, true); | |||
let cmplog_observer = ForkserverCmpObserver::new("cmplog", cmpmap, true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we need different observers for different executors, can we add type constraints so they cannot be misused?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for this ForkserverCmpObserver, No.
I think this is related issue to #23.
I think we have too many hidden dependency
"module this depends on module that" but that is not very clear if the user understands well about each module.
what's the status of this? |
it works but it tries too many cmplog attempts, thus making it super slow.. |
update with a working example & various fixes
todo: