Sometimes, I use the python boofuzz library to generate the fuzzed data but I send them using another library (for example websocket, or, for lower level stuff, Scapy). For this I used s_render and s_mutate. it seems however they have been removed in version 0.3.0.0. Is there still a way to do that ?
My code looked like something like this:
s_initialize(name="Request")
blocks
while s_mutate():
send(s_render())
Thank you
I think that s_render is an inheritance from Sulley fuzzer. And this function does not appear in the documentation of Boofuzz
From the Sulley fuzzer documentation:
From the Boofuzz docuentation: