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