-
I work with protocol, which can send response consisting of few packets. So, I want boofuzz not to send data after each receive. Just after "OK" is present in response message. Is it possible? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Right now two options to realize this come to my mind:
|
Beta Was this translation helpful? Give feedback.
-
Those are both options -- This could be more easily supported if boofuzz had a more flexible message sequence setup -- something like a generic grammar or state machine rather than the request/response tree structure it has now. |
Beta Was this translation helpful? Give feedback.
-
Ok, I will try this, thanks |
Beta Was this translation helpful? Give feedback.
Right now two options to realize this come to my mind:
post_test_case_callbacks
in session to manually receive data and evaluate it until want to continue.