sslab-gatech / DIE

Fuzzing JavaScript Engines with Aspect-preserving Mutation
MIT License
220 stars 39 forks source link

issues with resuming #8

Closed adriantdlg closed 4 years ago

adriantdlg commented 4 years ago

Hi @thdusdl1219 ,

is there any way to resume a fuzzing session? If I try to use something like -i- it seems to be the equivalent of rerunning populate.sh script.

thanks

thdusdl1219 commented 4 years ago

You don't need to run like -i -. It should resume well with normal running way as our synchronization is working with a centralized redis server, not from the "output" directory. However, if you execute fuzzer with the same output directory name, AFL might return some err msg. To avoid this error and resume your fuzzer, just change output directory name or you can even delete output dirs and re-run.

adriantdlg commented 4 years ago

that's what I was missing, thank you.