2019-05-08 12:47:52 +02:00
|
|
|
#!/usr/bin/env python
|
2011-02-06 23:25:55 +00:00
|
|
|
|
|
|
|
|
"""
|
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
|
2011-02-06 23:25:55 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import string
|
|
|
|
|
|
|
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
|
|
|
|
|
|
__priority__ = PRIORITY.LOWEST
|
|
|
|
|
|
2011-07-06 21:04:45 +00:00
|
|
|
def dependencies():
|
|
|
|
|
pass
|
|
|
|
|
|
2012-12-03 14:27:01 +01:00
|
|
|
def tamper(payload, **kwargs):
|
2011-02-06 23:25:55 +00:00
|
|
|
"""
|
2018-07-31 02:18:33 +02:00
|
|
|
URL-encodes all characters in a given payload (not processing already encoded) (e.g. SELECT -> %53%45%4C%45%43%54)
|
2011-07-06 21:04:45 +00:00
|
|
|
|
|
|
|
|
Tested against:
|
|
|
|
|
* Microsoft SQL Server 2005
|
|
|
|
|
* MySQL 4, 5.0 and 5.5
|
|
|
|
|
* Oracle 10g
|
|
|
|
|
* PostgreSQL 8.3, 8.4, 9.0
|
|
|
|
|
|
|
|
|
|
Notes:
|
2018-07-31 01:17:11 +02:00
|
|
|
* Useful to bypass very weak web application firewalls that do not url-decode the request before processing it through their ruleset
|
|
|
|
|
* The web server will anyway pass the url-decoded version behind, hence it should work against any DBMS
|
2013-03-13 21:57:09 +01:00
|
|
|
|
|
|
|
|
>>> tamper('SELECT FIELD FROM%20TABLE')
|
|
|
|
|
'%53%45%4C%45%43%54%20%46%49%45%4C%44%20%46%52%4F%4D%20%54%41%42%4C%45'
|
2011-02-06 23:25:55 +00:00
|
|
|
"""
|
|
|
|
|
|
2011-04-04 08:18:26 +00:00
|
|
|
retVal = payload
|
2011-02-06 23:25:55 +00:00
|
|
|
|
2011-04-04 08:18:26 +00:00
|
|
|
if payload:
|
2011-02-06 23:25:55 +00:00
|
|
|
retVal = ""
|
|
|
|
|
i = 0
|
|
|
|
|
|
2011-04-04 08:18:26 +00:00
|
|
|
while i < len(payload):
|
2013-01-10 13:18:44 +01:00
|
|
|
if payload[i] == '%' and (i < len(payload) - 2) and payload[i + 1:i + 2] in string.hexdigits and payload[i + 2:i + 3] in string.hexdigits:
|
|
|
|
|
retVal += payload[i:i + 3]
|
2011-02-06 23:25:55 +00:00
|
|
|
i += 3
|
|
|
|
|
else:
|
2012-07-24 01:21:32 +02:00
|
|
|
retVal += '%%%.2X' % ord(payload[i])
|
2011-02-06 23:25:55 +00:00
|
|
|
i += 1
|
|
|
|
|
|
2012-10-25 10:10:23 +02:00
|
|
|
return retVal
|