how to adjust content of a primitive according to another? #664
-
Assume that a field within protocol header is length(size) which is associated with the content(data) appending to the header's tail(i.e. length = len(data)). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Hi, maybe you can refer to this example: https://github.com/jtpereyda/boofuzz/blob/master/examples/http_with_body.py. Specifically, use |
Beta Was this translation helpful? Give feedback.
Hi, maybe you can refer to this example: https://github.com/jtpereyda/boofuzz/blob/master/examples/http_with_body.py. Specifically, use
s_size()
to define the length field, ands_block()
to define the content part.