mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 11:03:47 +03:00
Minor cosmetics and adjustments
This commit is contained in:
parent
afba26a53f
commit
9669dbdae1
|
@ -292,7 +292,9 @@ def checkStability():
|
|||
checkDynamicContent(firstPage, secondPage)
|
||||
|
||||
if not Request.queryPage():
|
||||
errMsg = "target url is too dynamic. unable to continue. consider using other switches (e.g. --longest-common, --string, --text-only, etc.)"
|
||||
errMsg = "target url is too dynamic. unable to continue. "
|
||||
errMsg += "consider using other switches (e.g. "
|
||||
errMsg += "--longest-common, --string, --text-only, etc.)"
|
||||
logger.error(errMsg)
|
||||
raise sqlmapSilentQuitException
|
||||
|
||||
|
|
|
@ -296,6 +296,7 @@ def start():
|
|||
if kb.paramMatchRatio:
|
||||
conf.matchRatio = kb.paramMatchRatio[(kb.injPlace, kb.injParameter)]
|
||||
setMatchRatio()
|
||||
|
||||
checkForParenthesis()
|
||||
action()
|
||||
|
||||
|
|
|
@ -65,6 +65,7 @@ optDict = {
|
|||
"eRegexp": "string",
|
||||
"thold": "float",
|
||||
"textOnly": "boolean",
|
||||
"longestCommon": "boolean",
|
||||
"tamper": "string"
|
||||
},
|
||||
|
||||
|
|
|
@ -217,6 +217,10 @@ thold =
|
|||
# Valid: True or False
|
||||
textOnly = False
|
||||
|
||||
# Compare pages based on their longest common match
|
||||
# Valid: True or False
|
||||
longestCommon = False
|
||||
|
||||
# Use given script(s) for tampering injection data
|
||||
tamper =
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user