mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
minor bug fix
This commit is contained in:
parent
162d01abed
commit
255b21f2f4
|
@ -17,7 +17,10 @@ def tamper(place, value):
|
|||
|
||||
for i in xrange(len(value)):
|
||||
if not firstspace:
|
||||
firstspace = value[i].isspace()
|
||||
if value[i].isspace():
|
||||
firstspace = True
|
||||
retVal += "/**/"
|
||||
continue
|
||||
elif value[i] == '\'':
|
||||
qoute = not qoute
|
||||
elif value[i] == '"':
|
||||
|
|
Loading…
Reference in New Issue
Block a user