JSONBeautifier
JSONBeautifier copied to clipboard
JSON Beautifier for Burp written in Java
can you tell me how to install i am not able to install it
:) thanks.
I have a few examples of JSON responses, where the JSON content-type is stated and displayed as such in Burp Proxy "MIME Type" column, and where the JSON content is...
There's already an extension for decoding Gzipped data in Burp - would it be possible to integrate with that extension to beautify JSON in that GZip content? It appears they're...
Currently non-ascii text is not supported. For example if we have a JSON like ```json {"®":true} ``` It would shows ```json { "®": true } ``` reason: the [registered trade...
If a response body starts with [BOM](https://en.wikipedia.org/wiki/Byte_order_mark), the JSON decoder would throw exception. That is pretty common in reality (although `Content-Type` is the right way for HTTP). Please strip the...
https://unicode-table.com/en/#cyrillic Try adding `ЀЀЀЀЀЀ` into the JSON response and the "JSON Beautifier" tab won't show.