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-13 18:29:53 +04:00
|
|
|
from lib.core.convert import urlencode
|
2010-11-08 12:20:02 +03:00
|
|
|
from lib.core.enums import PRIORITY
|
2010-10-13 18:37:11 +04:00
|
|
|
from lib.core.exception import sqlmapUnsupportedFeatureException
|
2010-11-04 13:29:40 +03:00
|
|
|
|
|
|
|
__priority__ = PRIORITY.LOWER
|
2010-10-13 18:29:53 +04:00
|
|
|
|
2010-10-29 20:11:50 +04:00
|
|
|
def tamper(value):
|
2010-10-17 01:33:15 +04:00
|
|
|
"""
|
|
|
|
Replaces value with urlencode(value)
|
2010-11-04 11:03:59 +03:00
|
|
|
Example: 'SELECT FIELD FROM TABLE' becomes 'SELECT%20FIELD%20FROM%20TABLE'
|
2010-10-17 01:33:15 +04:00
|
|
|
"""
|
|
|
|
|
2010-10-13 18:29:53 +04:00
|
|
|
if value:
|
2010-10-29 20:11:50 +04:00
|
|
|
value = urlencode(value, convall=True)
|
2010-10-14 18:02:43 +04:00
|
|
|
|
2010-10-13 18:29:53 +04:00
|
|
|
return value
|