NikosG
6 years agoOccasional Contributor
Fuzzing Scan: manipulate REST body between iterations
Hi
I wonder if during fuzzing scan one could manipulate the values in the JSON request body between each request.
Let's suppose that the basic POST request is something like the following
{...
- 6 years agoHi NikosG,
I just re-read your original message and i think you state you want to concatenate a prefix to your dynamic value?
So as per the detail below for your dynamic values, you could add in a prefix to concatenate so say for testcase1 your id attribute value could be as follows:
'TestCase1_${=System.currentTimeMillis()}'
This would generate the following in your published .json
"Id" : "TestCase1_1566669888473"
Cheers,
Rich