Send one non-mutated message to check if definition is ok #678
-
Hi, I'm trying to figure out the easiest way to send 1 message to the target where nothing is mutated and only the default values are used so that I can check with Wireshark for example if I got the message definition right. Right now I'm using index_end=1 in the Session and a simple type with a fuzz_values parameter set to a valid value, while having all the fuzzable parameters of all the other Blocks set to False. However, this seems to be a bit complicated for that purpose. Is there a simpler way? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I believe you'll want I'm not sure we have docs on the CLI, but if you're using it, there is a |
Beta Was this translation helpful? Give feedback.
I believe you'll want
Session.feature_check()
instead ofSession.fuzz()
.I'm not sure we have docs on the CLI, but if you're using it, there is a
--feature-check
flag on theboo fuzz
command.