-
Notifications
You must be signed in to change notification settings - Fork 48
/
README
52 lines (33 loc) · 2.26 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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 option
Usage: 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.
https://dl.dropboxusercontent.com/u/107519001/Screenshot%20at%202013-09-26%2020%3A01%3A46.png
I used twitter Bootstrap library final report.
Mail me any feature request , Bug @ debasishm89 [@] gmail.com