minor update

This commit is contained in:
Miroslav Stampar 2010-11-09 16:59:36 +00:00
parent 759433f0f1
commit 726825ca70
2 changed files with 13 additions and 6 deletions

View File

@ -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": {

View File

@ -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.