Replies: 1 comment 2 replies
-
Hi @psparc82, boofuzz/examples/http_with_body.py Line 28 in f6396b0 It's still using the old static way of defining the protocol with the s_ notation, but the same is achievable with the new protocol definition style.
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm trying to fuzz a protocol that includes the total length of the payload as part of each request. The payload body has variable length fields that I am fuzzing but I can't figure out how to calculate the total length of a fuzzed packet and have that value sent as part of the fuzzed packet.
For example, if
boofuzz
tried to send the packet\x01\x02\x03\x04\x05
then the payload length would be 5 and needs to be placed at a specific offset in the payload. Things get difficult when variable length fields are fuzzed and the payload length needs to be dynamically generated depending on how largeboofuzz
made the payload.Any ideas? It may be something to do with the
Size
orChecksum
blocks but I haven't managed to get them working! ThanksBeta Was this translation helpful? Give feedback.
All reactions