Maximilian Lindner
Maximilian Lindner
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...
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.
Can you tell us where exactly the `SystemExit` exception is being caught? I tried a `raise SystemExit` in `_main_fuzz_loop` but that exited the program just fine. https://github.com/jtpereyda/boofuzz/blob/8384d46daef31622a4c51c96c970944fd3ce01c5/boofuzz/sessions.py#L1353 We catch `Exception`...
From https://github.com/jtpereyda/boofuzz/issues/113#issue-207288705: >For every kind of block/primitive/etc: Add a parameter that allows the user to inject a few custom cases. Parameter should probably be an iterable.
Agree, was implemented in #422
We don't have a unit test for `fuzz_values` atm right? So we should rewrite https://github.com/jtpereyda/boofuzz/blob/71f69bf829f98114100d3c7815caa5e827980d1a/unit_tests/test_primitives.py#L148-L193
That would very helpful indeed. I remember having the same feeling when I first used boofuzz. At the moment I don't have the time to write a detailed documentation, but...
@siw3kosky how do you execute the boofuzz script? Is it possible that the terminal doesn't support `stdin`? EOFError indicates that an EOF was received before any other input. https://stackoverflow.com/questions/12547683/python-3-eof-when-reading-a-line-sublime-text-2-is-angry Maybe...
We could also detect if the shell is interactive or not. https://stackoverflow.com/questions/2356399/tell-if-python-is-in-interactive-mode But I guess simply trying and possibly catching the exception would be a more pythonic way. How would...
Good point, splitting log files is currently not implemented but would indeed be quite handy.