simioni87 / auth_analyzer

Burp Extension for testing authorization issues. Automated request repeating and parameter value extraction on the fly.
MIT License
184 stars 47 forks source link

Feature Request: Null as Parameter Value #22

Closed claconsay closed 2 years ago

claconsay commented 3 years ago

Hi simioni87,

I have some test cases where I want a specific parameter to be replaced by a null value.

I tried setting it as the following:

param(Static Value)
Value:

but the request body(in jSON) becomes:

{
"param": ""
}

I hope you can also introduce another option called Null as Parameter Value so that the output becomes:

{
"param": null
}

Thank you so much for this wonderful Burp extension!

simioni87 commented 3 years ago

Thanks for your input. Will take it into consideration for the next release...

simioni87 commented 2 years ago

Hi @claconsay With the latest release JSON primitive types (null, Boolean and Integers) will be respected and replaced accordingly. Thanks for your report