You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a boofuzz script as below, log 3 type files: txt, csv and db.
def main():
fuzz_loggers = []
txt_log = open("/srv/boofuzz/http-fuzz-results.txt", "w")
fuzz_loggers.append(FuzzLoggerText(file_handle=txt_log))
csv_log = open("/srv/boofuzz/http-fuzz-results.csv", "w")
fuzz_loggers.append(FuzzLoggerCsv(file_handle=csv_log))
After scan finished, when I check the db file by "boo open...", and open the txt or csv files, I found that there are some lines missed in txt and csv files compared with the GUI for the last case.
Here is the result from GUI for the last case:
Here is the txt log file for the last case:
Expected behavior
The "Check OK: No crash detected." and other lines are contained in txt&csv files for the last case.
Actual behavior
The "Check OK: No crash detected." and other lines are missed in txt&csv files for the last case.
Steps to reproduce the problem
Just run the boofuzz script as above
Use "boo open..." to check the result
Open the txt log file, compared with GUI result, missed some lines
jtpereyda#601
Text log file and CSV log file requires a file flush so the data is consistent with the boofuzz db file.
Amended file formatting using the results of the "black" program.
Report
Hi Team,
I have a boofuzz script as below, log 3 type files: txt, csv and db.
def main():
fuzz_loggers = []
txt_log = open("/srv/boofuzz/http-fuzz-results.txt", "w")
fuzz_loggers.append(FuzzLoggerText(file_handle=txt_log))
csv_log = open("/srv/boofuzz/http-fuzz-results.csv", "w")
fuzz_loggers.append(FuzzLoggerCsv(file_handle=csv_log))
After scan finished, when I check the db file by "boo open...", and open the txt or csv files, I found that there are some lines missed in txt and csv files compared with the GUI for the last case.
Here is the result from GUI for the last case:
Here is the txt log file for the last case:
Expected behavior
The "Check OK: No crash detected." and other lines are contained in txt&csv files for the last case.
Actual behavior
The "Check OK: No crash detected." and other lines are missed in txt&csv files for the last case.
Steps to reproduce the problem
boofuzz script
boofuzz version
0.4.1
Python version
3.9
Platform
Linux
Anything else?
No response
The text was updated successfully, but these errors were encountered: