mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-28 20:16:28 +00:00
Completed support to get the list of targets from WebScarab/Burp proxies
log file and updated the documentation
This commit is contained in:
parent
785352d700
commit
6e548eb2ec
13 changed files with 232 additions and 166 deletions
11
sqlmap.conf
11
sqlmap.conf
|
|
@ -3,13 +3,13 @@
|
|||
# Target URL.
|
||||
# Example: http://192.168.1.121/sqlmap/mysql/get_int.php?id=1&cat=2
|
||||
# PHP and MySQL (local)
|
||||
#url = http://127.0.0.1/sqlmap/mysql/get_int.php?id=1
|
||||
url = http://127.0.0.1/sqlmap/mysql/get_int.php?id=1
|
||||
# PHP and Oracle (local)
|
||||
#url = http://127.0.0.1/sqlmap/oracle/get_int.php?id=1
|
||||
# PHP and PostgreSQL (local)
|
||||
#url = http://127.0.0.1/sqlmap/pgsql/get_int.php?id=1
|
||||
# PHP and Microsoft SQL Server (remote)
|
||||
url = http://127.0.0.1/sqlmap/mssql/get_int.php?id=1
|
||||
#url = http://127.0.0.1/sqlmap/mssql/get_int.php?id=1
|
||||
# PHP and MySQL (remote on Windows)
|
||||
#url = http://127.0.0.1/sqlmap/mysql/win_get_int.php?id=1
|
||||
# ASP and Microsoft SQL Server (local)
|
||||
|
|
@ -21,6 +21,9 @@ url = http://127.0.0.1/sqlmap/mssql/get_int.php?id=1
|
|||
#url =
|
||||
|
||||
# List of targets
|
||||
# Valid: Burp proxy (http://portswigger.net/suite/) requests log file path
|
||||
# or WebScarab proxy (http://www.owasp.org/index.php/Category:OWASP_WebScarab_Project)
|
||||
# 'conversations/' folder path
|
||||
list =
|
||||
|
||||
# Rather than providing a target url, let Google return target
|
||||
|
|
@ -107,11 +110,11 @@ dbms =
|
|||
# Valid: True or False
|
||||
timeTest = False
|
||||
|
||||
# Test for UNION SELECT (inband) SQL injection.
|
||||
# Test for UNION query (inband) SQL injection.
|
||||
# Valid: True or False
|
||||
unionTest = False
|
||||
|
||||
# Use the UNION SELECT (inband) SQL injection to retrieve the queries
|
||||
# Use the UNION query (inband) SQL injection to retrieve the queries
|
||||
# output. No need to go blind.
|
||||
# Valid: True or False
|
||||
unionUse = False
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue