mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-08 05:31:32 +00:00
minor bug fix
This commit is contained in:
@@ -17,7 +17,10 @@ def tamper(place, value):
|
|||||||
|
|
||||||
for i in xrange(len(value)):
|
for i in xrange(len(value)):
|
||||||
if not firstspace:
|
if not firstspace:
|
||||||
firstspace = value[i].isspace()
|
if value[i].isspace():
|
||||||
|
firstspace = True
|
||||||
|
retVal += "/**/"
|
||||||
|
continue
|
||||||
elif value[i] == '\'':
|
elif value[i] == '\'':
|
||||||
qoute = not qoute
|
qoute = not qoute
|
||||||
elif value[i] == '"':
|
elif value[i] == '"':
|
||||||
|
|||||||
Reference in New Issue
Block a user