sqlmap/tamper/space2comment.py

47 lines
1.0 KiB
Python
Raw Normal View History

#!/usr/bin/env python
"""
$Id$
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
See the file 'doc/COPYING' for copying permission
"""
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
2011-04-04 12:18:26 +04:00
def tamper(payload):
"""
Replaces ' ' with '/**/'
Example: 'SELECT id FROM users' becomes 'SELECT/**/id/**/FROM/**/users'
"""
2011-04-04 12:18:26 +04:00
retVal = payload
2011-04-04 12:18:26 +04:00
if payload:
retVal = ""
quote, doublequote, firstspace = False, False, False
2011-04-04 12:18:26 +04:00
for i in xrange(len(payload)):
if not firstspace:
2011-04-04 12:18:26 +04:00
if payload[i].isspace():
firstspace = True
retVal += "/**/"
continue
2011-04-04 12:18:26 +04:00
elif payload[i] == '\'':
quote = not quote
2011-04-04 12:18:26 +04:00
elif payload[i] == '"':
doublequote = not doublequote
2011-04-04 12:18:26 +04:00
elif payload[i]==" " and not doublequote and not quote:
retVal += "/**/"
continue
2011-04-04 12:18:26 +04:00
retVal += payload[i]
return retVal