2010-10-14 18:05:05 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2010-10-14 18:41:14 +04:00
|
|
|
"""
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2010-10-14 18:41:14 +04:00
|
|
|
"""
|
2010-10-14 18:02:43 +04:00
|
|
|
|
2010-10-14 10:40:56 +04:00
|
|
|
import re
|
|
|
|
|
|
|
|
from lib.core.common import randomRange
|
2010-10-14 15:06:28 +04:00
|
|
|
from lib.core.convert import urldecode
|
|
|
|
from lib.core.convert import urlencode
|
|
|
|
from lib.core.data import kb
|
2010-10-14 10:40:56 +04:00
|
|
|
|
|
|
|
def tamper(place, value):
|
2010-10-17 01:33:15 +04:00
|
|
|
"""
|
|
|
|
Add random comments to value
|
|
|
|
Example: 'INSERT' becomes 'IN/**/S/**/ERT'
|
|
|
|
"""
|
|
|
|
|
2010-10-14 15:06:28 +04:00
|
|
|
retVal = value
|
2010-10-14 18:02:43 +04:00
|
|
|
|
2010-10-14 15:06:28 +04:00
|
|
|
if value:
|
|
|
|
if place != "URI":
|
|
|
|
retVal = urldecode(retVal)
|
|
|
|
|
|
|
|
for match in re.finditer(r"[A-Za-z_]+", retVal):
|
|
|
|
word = match.group()
|
|
|
|
|
|
|
|
if len(word) < 2:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if word.upper() in kb.keywords:
|
|
|
|
newWord = word[0]
|
2010-10-14 18:02:43 +04:00
|
|
|
|
2010-10-14 15:06:28 +04:00
|
|
|
for i in xrange(1, len(word) - 1):
|
2010-10-17 01:55:34 +04:00
|
|
|
newWord += "%s%s" % ("/**/" if randomRange(0, 1) else "", word[i])
|
2010-10-14 18:02:43 +04:00
|
|
|
|
2010-10-14 15:06:28 +04:00
|
|
|
newWord += word[-1]
|
|
|
|
retVal = retVal.replace(word, newWord)
|
|
|
|
|
|
|
|
if place != "URI":
|
|
|
|
retVal = urlencode(retVal)
|
2010-10-14 18:02:43 +04:00
|
|
|
|
2010-10-14 15:06:28 +04:00
|
|
|
return retVal
|