mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-28 20:43:49 +03:00
Minor update
This commit is contained in:
parent
69e3a2cb9e
commit
08fbfda5d2
|
@ -62,6 +62,7 @@ optDict = {
|
||||||
"testParameter": "string",
|
"testParameter": "string",
|
||||||
"skip": "string",
|
"skip": "string",
|
||||||
"dbms": "string",
|
"dbms": "string",
|
||||||
|
"dbmsCred": "string",
|
||||||
"os": "string",
|
"os": "string",
|
||||||
"invalidBignum": "boolean",
|
"invalidBignum": "boolean",
|
||||||
"invalidLogical": "boolean",
|
"invalidLogical": "boolean",
|
||||||
|
@ -175,7 +176,6 @@ optDict = {
|
||||||
"checkTor": "boolean",
|
"checkTor": "boolean",
|
||||||
"crawlDepth": "integer",
|
"crawlDepth": "integer",
|
||||||
"csvDel": "string",
|
"csvDel": "string",
|
||||||
"dbmsCred": "string",
|
|
||||||
"dumpFormat": "string",
|
"dumpFormat": "string",
|
||||||
"eta": "boolean",
|
"eta": "boolean",
|
||||||
"flushSession": "boolean",
|
"flushSession": "boolean",
|
||||||
|
|
|
@ -198,6 +198,9 @@ def cmdLineParser():
|
||||||
injection.add_option("--dbms", dest="dbms",
|
injection.add_option("--dbms", dest="dbms",
|
||||||
help="Force back-end DBMS to this value")
|
help="Force back-end DBMS to this value")
|
||||||
|
|
||||||
|
injection.add_option("--dbms-cred", dest="dbmsCred",
|
||||||
|
help="DBMS authentication credentials (user:password)")
|
||||||
|
|
||||||
injection.add_option("--os", dest="os",
|
injection.add_option("--os", dest="os",
|
||||||
help="Force back-end DBMS operating system "
|
help="Force back-end DBMS operating system "
|
||||||
"to this value")
|
"to this value")
|
||||||
|
@ -549,9 +552,6 @@ def cmdLineParser():
|
||||||
help="Delimiting character used in CSV output "
|
help="Delimiting character used in CSV output "
|
||||||
"(default \"%s\")" % defaults.csvDel)
|
"(default \"%s\")" % defaults.csvDel)
|
||||||
|
|
||||||
general.add_option("--dbms-cred", dest="dbmsCred",
|
|
||||||
help="DBMS authentication credentials (user:password)")
|
|
||||||
|
|
||||||
general.add_option("--dump-format", dest="dumpFormat",
|
general.add_option("--dump-format", dest="dumpFormat",
|
||||||
help="Format of dumped data (CSV (default), HTML or SQLITE)")
|
help="Format of dumped data (CSV (default), HTML or SQLITE)")
|
||||||
|
|
||||||
|
|
16
sqlmap.conf
16
sqlmap.conf
|
@ -185,6 +185,14 @@ skip =
|
||||||
# access, firebird, maxdb, sybase
|
# access, firebird, maxdb, sybase
|
||||||
dbms =
|
dbms =
|
||||||
|
|
||||||
|
# DBMS authentication credentials (user:password). Useful if you want to
|
||||||
|
# run SQL statements as another user, the back-end database management
|
||||||
|
# system is PostgreSQL or Microsoft SQL Server and the parameter is
|
||||||
|
# vulnerable by stacked queries SQL injection or you are connecting directly
|
||||||
|
# to the DBMS (-d switch).
|
||||||
|
# Syntax: username:password
|
||||||
|
dbmsCred =
|
||||||
|
|
||||||
# Force back-end DBMS operating system to this value. If this option is
|
# Force back-end DBMS operating system to this value. If this option is
|
||||||
# set, the back-end DBMS identification process will be minimized as
|
# set, the back-end DBMS identification process will be minimized as
|
||||||
# needed.
|
# needed.
|
||||||
|
@ -596,14 +604,6 @@ crawlDepth = 0
|
||||||
# Default: ,
|
# Default: ,
|
||||||
csvDel = ,
|
csvDel = ,
|
||||||
|
|
||||||
# DBMS authentication credentials (user:password). Useful if you want to
|
|
||||||
# run SQL statements as another user, the back-end database management
|
|
||||||
# system is PostgreSQL or Microsoft SQL Server and the parameter is
|
|
||||||
# vulnerable by stacked queries SQL injection or you are connecting directly
|
|
||||||
# to the DBMS (-d switch).
|
|
||||||
# Syntax: username:password
|
|
||||||
dbmsCred =
|
|
||||||
|
|
||||||
# Format of dumped data
|
# Format of dumped data
|
||||||
# Valid: CSV, HTML or SQLITE
|
# Valid: CSV, HTML or SQLITE
|
||||||
dumpFormat = CSV
|
dumpFormat = CSV
|
||||||
|
|
Loading…
Reference in New Issue
Block a user