mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-29 04:53:48 +03:00
minor update
This commit is contained in:
parent
759433f0f1
commit
726825ca70
|
@ -111,8 +111,11 @@ optDict = {
|
||||||
"lastChar": "integer",
|
"lastChar": "integer",
|
||||||
"query": "string",
|
"query": "string",
|
||||||
"sqlShell": "boolean",
|
"sqlShell": "boolean",
|
||||||
"cExists": "boolean",
|
},
|
||||||
"tableFile": "string"
|
|
||||||
|
"Brute": {
|
||||||
|
"bruteTables": "boolean",
|
||||||
|
"bruteColumns": "boolean",
|
||||||
},
|
},
|
||||||
|
|
||||||
"User-defined function": {
|
"User-defined function": {
|
||||||
|
|
12
sqlmap.conf
12
sqlmap.conf
|
@ -386,13 +386,17 @@ query =
|
||||||
# Valid: True or False
|
# Valid: True or False
|
||||||
sqlShell = False
|
sqlShell = False
|
||||||
|
|
||||||
|
|
||||||
|
# These options can be used to run brute force checks.
|
||||||
|
[Brute force]
|
||||||
|
|
||||||
# Check existence of common tables.
|
# Check existence of common tables.
|
||||||
# Valid: True or False
|
# Valid: True or False
|
||||||
cExists = False
|
bruteTables = False
|
||||||
|
|
||||||
# Check existence of user specified tables.
|
# Check existence of common columns.
|
||||||
# Valid: text file containing one table name per line
|
# Valid: True or False
|
||||||
tableFile =
|
bruteColumns = False
|
||||||
|
|
||||||
|
|
||||||
# These options can be used to create custom user-defined functions.
|
# These options can be used to create custom user-defined functions.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user