2013-02-14 15:32:17 +04:00
|
|
|
#!/usr/bin/env python
|
2011-02-07 02:25:55 +03:00
|
|
|
|
|
|
|
"""
|
2019-01-05 23:38:52 +03:00
|
|
|
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2011-02-07 02:25:55 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from lib.core.common import randomRange
|
|
|
|
from lib.core.data import kb
|
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
|
|
|
|
__priority__ = PRIORITY.LOW
|
|
|
|
|
2012-12-03 17:27:01 +04:00
|
|
|
def tamper(payload, **kwargs):
|
2011-02-07 02:25:55 +03:00
|
|
|
"""
|
2018-07-31 03:18:33 +03:00
|
|
|
Add random inline comments inside SQL keywords (e.g. SELECT -> S/**/E/**/LECT)
|
2013-03-14 00:57:09 +04:00
|
|
|
|
|
|
|
>>> import random
|
|
|
|
>>> random.seed(0)
|
|
|
|
>>> tamper('INSERT')
|
|
|
|
'I/**/N/**/SERT'
|
2011-02-07 02:25:55 +03:00
|
|
|
"""
|
|
|
|
|
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:
|
2013-07-31 11:52:10 +04:00
|
|
|
for match in re.finditer(r"\b[A-Za-z_]+\b", 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]
|
2013-07-31 11:52:10 +04:00
|
|
|
|
|
|
|
if "/**/" not in _:
|
|
|
|
index = randomRange(1, len(word) - 1)
|
|
|
|
_ = word[:index] + "/**/" + word[index:]
|
|
|
|
|
2012-07-24 03:21:32 +04:00
|
|
|
retVal = retVal.replace(word, _)
|
2011-02-07 02:25:55 +03:00
|
|
|
|
2012-10-25 12:10:23 +04:00
|
|
|
return retVal
|