bugzy
bugzy
@CyberSecurityUP please select the report type first and then generate the report. I hope this will solve your problem.
This is what causing issues to you ...... as Burp doesn't provide any interface for JSON parameter update like normal POST/GET parameter update so have written a manual parser that...
a quick solution for this > parse it by searching the next occurrence of `",` instead of `"` so in this way you can work with double quote too But...
@arthusu replace the highlighted line with this snippet and compile again ..... ``` int _si = messageBody.indexOf("]\",", _fi); if(_si < 0){ _si = messageBody.indexOf("\"", _fi); } ```
Hi @lovelyjuice Your application is HEX Encoding the string after encryption instead of Base64? If yes, that could be added with one additional UI component where one can select an...
You need to change the following this.helpers.base64Decode and this.helpers.base64Encode to call your custom hex encode and decode function. (Burp interface does not provide any hex encoding/decode https://portswigger.net/burp/extender/api/burp/IExtensionHelpers.html, you have to...