mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Fixed MySQL BETWEEN tamper script
This commit is contained in:
parent
8cf0ebde1e
commit
5ba36f89df
1 changed files with 4 additions and 7 deletions
|
|
@ -17,13 +17,10 @@ def tamper(value):
|
||||||
|
|
||||||
if value:
|
if value:
|
||||||
retVal = ""
|
retVal = ""
|
||||||
quote, doublequote, firstspace = False, False, False
|
quote, doublequote = False, False
|
||||||
|
|
||||||
for i in xrange(len(value)):
|
for i in xrange(len(value)):
|
||||||
if not firstspace:
|
|
||||||
|
|
||||||
if value[i].isspace():
|
if value[i].isspace():
|
||||||
firstspace = True
|
|
||||||
retVal += " "
|
retVal += " "
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue