2011-02-07 02:25:55 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2012-07-12 21:38:03 +04:00
|
|
|
Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
|
2011-02-07 02:25:55 +03:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from lib.core.common import randomRange
|
|
|
|
from lib.core.data import kb
|
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
|
|
|
|
__priority__ = PRIORITY.LOW
|
|
|
|
|
2012-07-27 02:11:07 +04:00
|
|
|
def tamper(payload, headers):
|
2011-02-07 02:25:55 +03:00
|
|
|
"""
|
2011-04-04 12:18:26 +04:00
|
|
|
Add random comments to SQL keywords
|
2011-02-07 02:25:55 +03:00
|
|
|
Example: 'INSERT' becomes 'IN/**/S/**/ERT'
|
|
|
|
"""
|
|
|
|
|
2011-04-04 12:18:26 +04:00
|
|
|
retVal = payload
|
2011-02-07 02:25:55 +03:00
|
|
|
|
2011-04-04 12:18:26 +04:00
|
|
|
if payload:
|
|
|
|
for match in re.finditer(r"[A-Za-z_]+", payload):
|
2011-02-07 02:25:55 +03:00
|
|
|
word = match.group()
|
|
|
|
|
|
|
|
if len(word) < 2:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if word.upper() in kb.keywords:
|
2012-07-24 03:21:32 +04:00
|
|
|
_ = word[0]
|
2011-02-07 02:25:55 +03:00
|
|
|
|
|
|
|
for i in xrange(1, len(word) - 1):
|
2012-07-24 03:21:32 +04:00
|
|
|
_ += "%s%s" % ("/**/" if randomRange(0, 1) else "", word[i])
|
2011-02-07 02:25:55 +03:00
|
|
|
|
2012-07-24 03:21:32 +04:00
|
|
|
_ += word[-1]
|
|
|
|
retVal = retVal.replace(word, _)
|
2011-02-07 02:25:55 +03:00
|
|
|
|
2012-07-27 02:11:07 +04:00
|
|
|
return retVal, headers
|