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-10-13 18:37:11 +04:00
|
|
|
from lib.core.exception import sqlmapUnsupportedFeatureException
|
2010-10-13 18:29:53 +04:00
|
|
|
|
|
|
|
def tamper(place, value):
|
2010-10-17 01:33:15 +04:00
|
|
|
"""
|
|
|
|
Replaces value with urlencode(value)
|
|
|
|
Example: 'SELECT%20FIELD%20FROM%20TABLE' becomes 'SELECT%25%20FIELD%25%20FROM%25%20TABLE'
|
|
|
|
"""
|
|
|
|
|
2010-10-13 18:29:53 +04:00
|
|
|
if value:
|
2010-10-13 18:37:11 +04:00
|
|
|
if place != "URI":
|
2010-10-17 01:33:15 +04:00
|
|
|
value = urlencode(value, convall=True)
|
2010-10-13 18:37:11 +04:00
|
|
|
else:
|
2010-10-17 01:33:15 +04:00
|
|
|
raise sqlmapUnsupportedFeatureException, "can't use tamper script '%s' with 'URI' type injections" % __name__
|
2010-10-14 18:02:43 +04:00
|
|
|
|
2010-10-13 18:29:53 +04:00
|
|
|
return value
|