-
Is it possible to stop the test without killing the application (keyboard interrupt)? I have a scenario that if a certain condition mets, I need to stop the testing. |
Beta Was this translation helpful? Give feedback.
Answered by
SR4ven
Feb 10, 2022
Replies: 1 comment 2 replies
-
Two options come to my mind:
You might also want to set |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
ACBNair
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Two options come to my mind:
session.fuzz
.session._index_end = 0
. That will break the main fuzzing loop.You might also want to set
keep_web_open=False
inSession
so that boofuzz will not block holding the website open.