SIGN IN SIGN UP
sqlmapproject / sqlmap UNCLAIMED

Automatic SQL injection and database takeover tool

0 0 0 Python
2019-05-08 12:47:52 +02:00
#!/usr/bin/env python
"""
2026-01-01 19:12:07 +01:00
Copyright (c) 2006-2026 sqlmap developers (https://sqlmap.org)
2017-10-11 14:50:46 +02:00
See the file 'LICENSE' for copying permission
"""
import re
from lib.core.common import randomRange
2019-03-28 16:04:38 +01:00
from lib.core.compat import xrange
from lib.core.data import kb
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
2012-12-03 14:27:01 +01:00
def tamper(payload, **kwargs):
"""
2025-02-19 14:11:03 +01:00
Inserts random inline comments within SQL keywords (e.g. SELECT -> S/**/E/**/LECT)
>>> import random
>>> random.seed(0)
>>> tamper('INSERT')
2019-05-03 13:20:15 +02:00
'I/**/NS/**/ERT'
"""
2011-04-04 08:18:26 +00:00
retVal = payload
2011-04-04 08:18:26 +00:00
if payload:
for match in re.finditer(r"\b[A-Za-z_]+\b", payload):
word = match.group()
if len(word) < 2:
continue
if word.upper() in kb.keywords:
2012-07-24 01:21:32 +02:00
_ = word[0]
for i in xrange(1, len(word) - 1):
2012-07-24 01:21:32 +02:00
_ += "%s%s" % ("/**/" if randomRange(0, 1) else "", word[i])
2012-07-24 01:21:32 +02:00
_ += word[-1]
if "/**/" not in _:
index = randomRange(1, len(word) - 1)
_ = word[:index] + "/**/" + word[index:]
2012-07-24 01:21:32 +02:00
retVal = retVal.replace(word, _)
return retVal