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",
"query": "string",
"sqlShell": "boolean",
"cExists": "boolean",
"tableFile": "string"
},
"Brute": {
"bruteTables": "boolean",
"bruteColumns": "boolean",
},
"User-defined function": {

View File

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