hi all,
i have a request file like the one below, my problem is during the fuzzing process, i would like to be able to fuzz in the same time, in a parallel way the 2 string below.. AAAA and BBBB
s_initialize(�test�)
s_static(�begin�)
s_string(�AAAA�) # here the fuzzing process is running
s_static(static)
s_string(�BBBB�) # my problem is here, at runtime BBBB(4 bytes) is kept, i would like to fuzz it in a parallel way ( in the same time/same session ) as AAAA
s_static(�end)
the fuzz output is:
beginAAAAAAAAAAAAAAAAAAstaticBBBBend (the first fuzz string, BBBB is kept 4 bytes)
beginAAAAstaticBBBBBBBBBBBBBBBBBBBBBBend (the second fuzz string, AAAA is kept 4 bytes)
i would like to fuzz at the same time string AAAA and string BBBB, something like that:
beginAAAAAAAAAAAAAAAAAAAAstaticBBBBBBBBBBBBBBBBBBBBend (A is fuzzed and B is fuzzed at runtime)
Do u know if it is possible?
Thanks a lot







