2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2017-01-31 15:50:14 +03:00
|
|
|
|
|
|
|
"""
|
2024-01-04 01:11:52 +03:00
|
|
|
Copyright (c) 2006-2024 sqlmap developers (https://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2017-01-31 15:50:14 +03:00
|
|
|
"""
|
|
|
|
|
2019-03-28 18:04:38 +03:00
|
|
|
from lib.core.compat import xrange
|
2017-01-31 15:50:14 +03:00
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
|
|
|
|
__priority__ = PRIORITY.LOW
|
|
|
|
|
|
|
|
def dependencies():
|
|
|
|
pass
|
|
|
|
|
|
|
|
def tamper(payload, **kwargs):
|
|
|
|
"""
|
2018-07-31 03:18:33 +03:00
|
|
|
Replaces (MySQL) instances of space character (' ') with comments '/**_**/'
|
2017-01-31 15:50:14 +03:00
|
|
|
|
|
|
|
Tested against:
|
|
|
|
* MySQL 5.0 and 5.5
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
* Useful to bypass weak and bespoke web application firewalls
|
|
|
|
|
|
|
|
>>> tamper('SELECT id FROM users')
|
|
|
|
'SELECT/**_**/id/**_**/FROM/**_**/users'
|
|
|
|
"""
|
|
|
|
|
|
|
|
retVal = payload
|
|
|
|
|
|
|
|
if payload:
|
|
|
|
retVal = ""
|
|
|
|
quote, doublequote, firstspace = False, False, False
|
|
|
|
|
|
|
|
for i in xrange(len(payload)):
|
|
|
|
if not firstspace:
|
|
|
|
if payload[i].isspace():
|
|
|
|
firstspace = True
|
|
|
|
retVal += "/**_**/"
|
|
|
|
continue
|
|
|
|
|
|
|
|
elif payload[i] == '\'':
|
|
|
|
quote = not quote
|
|
|
|
|
|
|
|
elif payload[i] == '"':
|
|
|
|
doublequote = not doublequote
|
|
|
|
|
|
|
|
elif payload[i] == " " and not doublequote and not quote:
|
|
|
|
retVal += "/**_**/"
|
|
|
|
continue
|
|
|
|
|
|
|
|
retVal += payload[i]
|
|
|
|
|
|
|
|
return retVal
|