mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-16 19:40:37 +03:00
update regarding --space option
This commit is contained in:
parent
e176b36a7f
commit
2e5f269650
|
@ -74,6 +74,7 @@ optDict = {
|
||||||
"eRegexp": "string",
|
"eRegexp": "string",
|
||||||
"thold": "float",
|
"thold": "float",
|
||||||
"useBetween": "boolean",
|
"useBetween": "boolean",
|
||||||
|
"space": "string",
|
||||||
},
|
},
|
||||||
|
|
||||||
"Techniques": {
|
"Techniques": {
|
||||||
|
|
|
@ -195,7 +195,7 @@ def cmdLineParser():
|
||||||
help="Page comparison threshold value (0.0-1.0)")
|
help="Page comparison threshold value (0.0-1.0)")
|
||||||
|
|
||||||
injection.add_option("--space", dest="space",
|
injection.add_option("--space", dest="space",
|
||||||
help="Use defined string instead of standard ' '")
|
help="Use defined string for space instead of standard ' '")
|
||||||
|
|
||||||
injection.add_option("--use-between", dest="useBetween",
|
injection.add_option("--use-between", dest="useBetween",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
|
|
|
@ -195,6 +195,9 @@ thold =
|
||||||
# Valid: True or False
|
# Valid: True or False
|
||||||
useBetween = False
|
useBetween = False
|
||||||
|
|
||||||
|
# Use defined string for space instead of standard ' '
|
||||||
|
space =
|
||||||
|
|
||||||
# These options can be used to test for specific SQL injection technique
|
# These options can be used to test for specific SQL injection technique
|
||||||
# or to use one of them to exploit the affected parameter(s) rather than
|
# or to use one of them to exploit the affected parameter(s) rather than
|
||||||
# using the default blind SQL injection technique.
|
# using the default blind SQL injection technique.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user