mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
minor update
This commit is contained in:
parent
dacfeafc5f
commit
a7a29f33ad
|
@ -58,7 +58,7 @@ def __oneShotErrorUse(expression, field):
|
||||||
offset = 1
|
offset = 1
|
||||||
chunk_length = None
|
chunk_length = None
|
||||||
|
|
||||||
if not retVal:
|
if retVal is None:
|
||||||
while True:
|
while True:
|
||||||
check = "%s(?P<result>.*?)%s" % (kb.chars.start, kb.chars.stop)
|
check = "%s(?P<result>.*?)%s" % (kb.chars.start, kb.chars.stop)
|
||||||
trimcheck = "%s(?P<result>.*?)</" % (kb.chars.start)
|
trimcheck = "%s(?P<result>.*?)</" % (kb.chars.start)
|
||||||
|
|
|
@ -52,7 +52,7 @@ def __oneShotUnionUse(expression, unpack=True, limited=False):
|
||||||
|
|
||||||
retVal = conf.hashDB.retrieve(expression) if not conf.freshQueries else None
|
retVal = conf.hashDB.retrieve(expression) if not conf.freshQueries else None
|
||||||
|
|
||||||
if not retVal:
|
if retVal is None:
|
||||||
check = "(?P<result>%s.*%s)" % (kb.chars.start, kb.chars.stop)
|
check = "(?P<result>%s.*%s)" % (kb.chars.start, kb.chars.stop)
|
||||||
trimcheck = "%s(?P<result>.*?)</" % (kb.chars.start)
|
trimcheck = "%s(?P<result>.*?)</" % (kb.chars.start)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user