Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/debasishm89/burpy
Portable and flexible web application security assessment tool.It parses Burp Suite log and performs various tests depending on the module provided and finally generate a HTML report.
https://github.com/debasishm89/burpy
Last synced: 3 months ago
JSON representation
Portable and flexible web application security assessment tool.It parses Burp Suite log and performs various tests depending on the module provided and finally generate a HTML report.
- Host: GitHub
- URL: https://github.com/debasishm89/burpy
- Owner: debasishm89
- License: gpl-2.0
- Created: 2013-09-18T05:45:44.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-04-04T05:27:35.000Z (over 6 years ago)
- Last Synced: 2024-04-08T12:32:59.586Z (7 months ago)
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 114
- Watchers: 9
- Forks: 44
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-burp-extensions - Burpy - Portable and flexible web application security assessment tool.It parses Burp Suite log and performs various tests depending on the module provided and finally generate a HTML report. (Scripting)
README
Burpy v0.1
===========This portable python tool,parses Burp Suite (http://portswigger.net) log and performs
series of tests and finally generate HTML report.debasish@debasish:~/burpy$ python burpy.py
____ ___ __
| _ \ / _ \/_ |
| |_) |_ _ _ __ _ __ _ _ ______ __ __ | | | || |
| _ <| | | | '__| '_ \| | | | |______| \ \ / / | | | || |
| |_) | |_| | | | |_) | |_| | \ V / | |_| || |
|____/ \__,_|_| | .__/ \__, | \_/ \___(_)_|
| | __/ |
|_| |___/Burpy v0.1 Portable and Flexible Web Application Security Scanner
Author : Debasish Mandal (http://www.debasish.in)
[+] Error!! You have missed a mandatory optionUsage: burpy.py [options]
Options:
-h, --help show this help message and exit
-t TARGET_DOMAIN Target/Scan Scope domain - Its mandatory option
-l BURP_SUITE_LOG Full path to burp suite log - Its mandatory option
-s SSL Use of SSL on or off - Its mandatory option
debasish@debasish:~/burpy$I have included one raw http request manipulation library (rawweb.py) here.
Using this library you can easily manipulate (Add remove headers , parameter ,change methods) raw
http requests on the fly.You can easily write your own module specific to any web application.
One example is given below.
Below mentioned burpy module adds a new header to any request, remove Referrer header and csrf token from
request and fire the request.If generic CSRF error is returned, it means token validation is present in
server side. If server respond is a different manner it log this crafted request in html report.https://github.com/debasishm89/burpy/blob/master/modules/samplexsrf.py
And this is how the final report looks.
http://onlyhtmlfiles.appspot.com/static/Sample_Burpy_Report.html
I've used twitter Bootstrap library to design this final report.
Following Bugs were found using Burpy:
http://www.debasish.in/2013/09/hacking-twitter-for-fun.html
http://www.debasish.in/2013/09/twitter-xsrf-vulnerability-thanks-to.html
http://www.debasish.in/2013/10/fuzzing-facebook-for-using-burpy.htmlMail me any feature request , Bug @ debasishm89 [@] gmail.com
**Update**
I've been receiving many issues / errors with this prototype of burpy. Right now I'm unable to maintain this project due to other priorities and limited bandwidth. Sorry about that :(