mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 02:53:46 +03:00
Adding a switch --invalid-string
This commit is contained in:
parent
f88f6dcd7e
commit
f97fcb7bb3
|
@ -329,11 +329,14 @@ def checkSqlInjection(place, parameter, value):
|
|||
# one as we are changing parameters value, which
|
||||
# will likely result in a different content
|
||||
kb.data.setdefault("randomInt", str(randomInt(10)))
|
||||
kb.data.setdefault("randomStr", str(randomStr(10)))
|
||||
if conf.invalidLogical:
|
||||
_ = int(kb.data.randomInt[:2])
|
||||
origValue = "%s AND %s=%s" % (value, _, _ + 1)
|
||||
elif conf.invalidBignum:
|
||||
origValue = kb.data.randomInt[:6]
|
||||
elif conf.invalidString:
|
||||
origValue = kb.data.randomStr[:6]
|
||||
else:
|
||||
origValue = "-%s" % kb.data.randomInt[:4]
|
||||
templatePayload = agent.payload(place, parameter, value="", newValue=origValue, where=where)
|
||||
|
|
|
@ -122,6 +122,8 @@ class Agent(object):
|
|||
value = "%s%s AND %s=%s" % (origValue, match.group() if match else "", _, _ + 1)
|
||||
elif conf.invalidBignum:
|
||||
value = randomInt(6)
|
||||
elif conf.invalidString:
|
||||
value = randomStr(6)
|
||||
else:
|
||||
if newValue.startswith("-"):
|
||||
value = ""
|
||||
|
|
|
@ -72,6 +72,7 @@ optDict = {
|
|||
"os": "string",
|
||||
"invalidBignum": "boolean",
|
||||
"invalidLogical": "boolean",
|
||||
"invalidString": "boolean",
|
||||
"noCast": "boolean",
|
||||
"noEscape": "boolean",
|
||||
"prefix": "string",
|
||||
|
|
|
@ -239,6 +239,10 @@ def cmdLineParser():
|
|||
action="store_true",
|
||||
help="Use logical operations for invalidating values")
|
||||
|
||||
injection.add_option("--invalid-string", dest="invalidString",
|
||||
action="store_true",
|
||||
help="Use random strings for invalidating values")
|
||||
|
||||
injection.add_option("--no-cast", dest="noCast",
|
||||
action="store_true",
|
||||
help="Turn off payload casting mechanism")
|
||||
|
|
|
@ -233,6 +233,10 @@ invalidBignum = False
|
|||
# Valid: True or False
|
||||
invalidLogical = False
|
||||
|
||||
# Use random strings for invalidating values.
|
||||
# Valid: True or False
|
||||
invalidString = False
|
||||
|
||||
# Turn off payload casting mechanism
|
||||
# Valid: True or False
|
||||
noCast = False
|
||||
|
|
Loading…
Reference in New Issue
Block a user