Skip to content
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

Resuming fuzzing #12

Open
marcinguy opened this issue Apr 28, 2021 · 3 comments
Open

Resuming fuzzing #12

marcinguy opened this issue Apr 28, 2021 · 3 comments

Comments

@marcinguy
Copy link

What is the best practice to resume fuzzing?

Thanks,

@ttdennis
Copy link
Owner

ttdennis commented May 2, 2021

In standalone mode newly discovered corpus files are stored in the input directory. If you want to resume fuzzing from where the fuzzer last stopped, you would start it with the last seed that was used during the previous fuzzing session (using the --seed parameter).

In AFL mode, AFL pretty much handles everything resumption-related.

@marcinguy
Copy link
Author

I have noticed it reads the coverage and corpus from output directory automatically upon subsequent start. But this is something different, right?

Is --seed taking a directory parameter? Or just appending --seed would do it

@ttdennis
Copy link
Owner

The seed parameter is pretty much just the seed value which is fed to the RNG. You would probably want to set the seed value to the last seed you've seen in the fuzzer output.

E.g., when the last log line contains:
... [seed=795] ...

continue with --seed 795

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants