diff --git a/lib/core/optiondict.py b/lib/core/optiondict.py index b104610d9..c7634d945 100644 --- a/lib/core/optiondict.py +++ b/lib/core/optiondict.py @@ -46,8 +46,8 @@ optDict = { "safUrl": "string", "saFreq": "integer", "skipUrlEncode": "boolean", - "evalCode": "string", "forceSSL": "boolean", + "evalCode": "string", }, "Optimization": { diff --git a/lib/parse/cmdline.py b/lib/parse/cmdline.py index 374409f15..bc06912ed 100644 --- a/lib/parse/cmdline.py +++ b/lib/parse/cmdline.py @@ -154,13 +154,13 @@ def cmdLineParser(): action="store_true", help="Skip URL encoding of payload data") - request.add_option("--eval", dest="evalCode", - help="Evaluate provided Python code before the request (e.g. \"import hashlib;id2=hashlib.md5(id).hexdigest()\")") - request.add_option("--force-ssl", dest="forceSSL", action="store_true", help="Force usage of SSL/HTTPS") + request.add_option("--eval", dest="evalCode", + help="Evaluate provided Python code before the request (e.g. \"import hashlib;id2=hashlib.md5(id).hexdigest()\")") + # Optimization options optimization = OptionGroup(parser, "Optimization", "These " "switches can be used to optimize the " diff --git a/sqlmap.conf b/sqlmap.conf index c53083db0..8faed8ee3 100644 --- a/sqlmap.conf +++ b/sqlmap.conf @@ -134,14 +134,14 @@ saFreq = 0 # Valid: True or False skipUrlEncode = False -# Evaluate provided Python code before the request. -# Example: import hashlib;id2=hashlib.md5(id).hexdigest() -evalCode = - # Force usage of SSL/HTTPS # Valid: True or False forceSSL = False +# Evaluate provided Python code before the request. +# Example: import hashlib;id2=hashlib.md5(id).hexdigest() +evalCode = + # These options can be used to optimize the performance of sqlmap. [Optimization]