From 726825ca70f628e51c4500eb38da2639e17073b9 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 9 Nov 2010 16:59:36 +0000 Subject: [PATCH] minor update --- lib/core/optiondict.py | 7 +++++-- sqlmap.conf | 12 ++++++++---- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/lib/core/optiondict.py b/lib/core/optiondict.py index 1f8c51db7..cf4b22661 100644 --- a/lib/core/optiondict.py +++ b/lib/core/optiondict.py @@ -111,8 +111,11 @@ optDict = { "lastChar": "integer", "query": "string", "sqlShell": "boolean", - "cExists": "boolean", - "tableFile": "string" + }, + + "Brute": { + "bruteTables": "boolean", + "bruteColumns": "boolean", }, "User-defined function": { diff --git a/sqlmap.conf b/sqlmap.conf index b1744dece..47cf1432c 100644 --- a/sqlmap.conf +++ b/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.