mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
50 lines
1.1 KiB
Python
50 lines
1.1 KiB
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
$Id$
|
|
|
|
Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/)
|
|
See the file 'doc/COPYING' for copying permission
|
|
"""
|
|
|
|
import random
|
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
__priority__ = PRIORITY.LOW
|
|
|
|
def tamper(payload):
|
|
"""
|
|
Replaces ' ' with a random blank char from a set ('\r', '\n', '\t')
|
|
Example: 'SELECT id FROM users' becomes 'SELECT\rid\tFROM\nusers'
|
|
"""
|
|
|
|
blanks = ['\r', '\n', '\t']
|
|
retVal = payload
|
|
|
|
if payload:
|
|
retVal = ""
|
|
quote, doublequote, firstspace = False, False, False
|
|
|
|
for i in xrange(len(payload)):
|
|
if not firstspace:
|
|
if payload[i].isspace():
|
|
firstspace = True
|
|
retVal += random.choice(blanks)
|
|
continue
|
|
|
|
elif payload[i] == '\'':
|
|
quote = not quote
|
|
|
|
elif payload[i] == '"':
|
|
doublequote = not doublequote
|
|
|
|
elif payload[i]==" " and not doublequote and not quote:
|
|
retVal += random.choice(blanks)
|
|
continue
|
|
|
|
retVal += payload[i]
|
|
|
|
return retVal
|
|
|