boofuzz icon indicating copy to clipboard operation
boofuzz copied to clipboard

How to specific the result directory to something other than boofuzz-results?

Open prRZ5F4LXZ opened this issue 3 years ago • 3 comments

boofuzz/constants.py
7:RESULTS_DIR = "boofuzz-results"

I see "boofuzz-results" is hard-code in the source code. Is there a way to specify where to save the file?

prRZ5F4LXZ avatar Apr 04 '21 21:04 prRZ5F4LXZ

Right now it seems to be fully hard coded.

I guess we could see this as a feature request? Shouldn't be too hard to implement an additional Session argument to specify the database file path.

SR4ven avatar Apr 04 '21 21:04 SR4ven

Yep, I figure a -o option to specify the directory name. Right now "boofuzz-results" is a directory in which results directories are created. I'm leaning toward following AFL's example and specifying the entire output directory names. E.g. -o boofuzz-results/testRun1 etc.

jtpereyda avatar Apr 09 '21 00:04 jtpereyda

The session argument db_filename was implemented in #588.

A command line argument like -o still has to be added to boofuzz/boofuzz/cli.py.

SR4ven avatar Dec 09 '21 23:12 SR4ven