An open API service indexing awesome lists of open source software.

https://github.com/dweinstein/burp-parse

print a burp flow with base64 components to stdout
https://github.com/dweinstein/burp-parse

Last synced: about 2 months ago
JSON representation

print a burp flow with base64 components to stdout

Awesome Lists containing this project

README

        

# SYNOPSIS

Sometimes you want to review a BASE64 encoded burp traffic log. This reads the
XML from stdin and decodes/outputs to stdout.

# USAGE

```
$ npm install -g burp-parse
$ burp-parse < burpRecording | less
```

## sample burp

A burp XML log might look something like:

```xml

]>




www.google-analytics.com
80
http
GET

...
```

## sample output
The output of this tool will look something like:

```
± burp-parse < log | head
method: GET
url: http://www.google-analytics.com/collect?v=1&_v=j34&a=1908689507&t=pageview&_s=1&dl=http%3A%2F%2Fbeautifulgranite.com%2F&ul=en-us&de=UTF-8&dt=Untitled%20Document&sd=32-bit&sr=720x1280&vp=980x1402&je=0&_utma=63499196.178485963.1414159547.1428962577.1428962577.1&_utmz=63499196.1428962577.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)&_utmht=1428962591519&_u=AACCAAQAI~&jid=&cid=178485963.1414159547&tid=UA-856047-1&z=658582538
host: www.google-analytics.com
request:
GET /collect?v=1&_v=j34&a=1908689507&t=pageview&_s=1&dl=http%3A%2F%2Fbeautifulgranite.com%2F&ul=en-us&de=UTF-8&dt=Untitled%20Document&sd=32-bit&sr=720x1280&vp=980x1402&je=0&_utma=63499196.178485963.1414159547.1428962577.1428962577.1&_utmz=63499196.1428962577.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)&_utmht=1428962591519&_u=AACCAAQAI~&jid=&cid=178485963.1414159547&tid=UA-856047-1&z=658582538 HTTP/1.1
Host: www.google-analytics.com
Proxy-Connection: keep-alive
Referer: http://beautifulgranite.com/
X-Requested-With: com.android.browser
User-Agent: Mozilla/5.0 (Linux; U; Android 4.2.2; en-us; x86-Nexus7 Build/JDQ39E) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30

```