We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
fuzz!
From #499 (comment):
... a target binary must contain certain strings for AFL++ to handle it properly: afl.rs/afl/src/lib.rs Lines 49 to 52 in 462eff5 // this marker strings needs to be in the produced executable for // afl-fuzz to detect `persistent mode` and `defered mode` static PERSIST_MARKER: &str = "##SIG_AFL_PERSISTENT##\0"; static DEFERED_MARKER: &str = "##SIG_AFL_DEFER_FORKSRV##\0"; ... It used to be one could simply add the following to get those strings into their binary: #[allow(unused_imports)] use afl::fuzz; ... afl.rs should provide an easy way to get those strings into a binary.
... a target binary must contain certain strings for AFL++ to handle it properly:
afl.rs/afl/src/lib.rs
Lines 49 to 52 in 462eff5
...
It used to be one could simply add the following to get those strings into their binary:
#[allow(unused_imports)] use afl::fuzz;
... afl.rs should provide an easy way to get those strings into a binary.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From #499 (comment):
The text was updated successfully, but these errors were encountered: