-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathBappDescription.html
More file actions
23 lines (19 loc) · 1.01 KB
/
BappDescription.html
File metadata and controls
23 lines (19 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<p>This extension integrates Burp Suite with SQLMap.</p>
<p>Requirements:</p>
<ul>
<li>Jython 2.7 beta, due to the use of json.</li>
<li>Java 1.7 or later (the beta version of Jython 2.7 requires this).</li>
<li>A running instance of the SQLMap API server.</li>
</ul>
<p>SQLMap comes with a RESTful based server that will execute SQLMap scans. You can manually start the server
with: </p>
<pre> python sqlmapapi.py -s -H <ip> -p <port>
</pre>
<p>Alternatively, you can use the SQLMap API tab to select the IP/Port on which to run, as well as the path to python and sqlmapapi.py on your system.
</p>
<p>Once the SQLMap API is running, you just need to right-click in the 'Request'
sub tab of either the Target or Proxy main tabs and choose 'SQLiPy Scan' from
the context menu.
This will populate the SQLMap Scanner tab with information about that request. Clicking the 'Start Scan' button will execute a scan.
If the page is vulnerable to SQL injection, then these will be added to the Scanner Results tab.
</p>