2012-03-09 16:09:19 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2012-07-12 21:38:03 +04:00
|
|
|
Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
|
2012-03-09 16:09:19 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
|
|
|
|
__priority__ = PRIORITY.LOWEST
|
|
|
|
|
|
|
|
def dependencies():
|
|
|
|
pass
|
|
|
|
|
2012-10-25 12:10:23 +04:00
|
|
|
def tamper(payload, headers=None):
|
2012-03-09 16:09:19 +04:00
|
|
|
"""
|
|
|
|
Replaces apostrophe character with its illegal double unicode counterpart
|
|
|
|
|
|
|
|
Example:
|
|
|
|
* Input: AND '1'='1'
|
|
|
|
* Output: AND %00%271%00%27=%00%271%00%27
|
|
|
|
"""
|
|
|
|
|
2012-10-25 12:10:23 +04:00
|
|
|
return payload.replace('\'', "%00%27") if payload else payload
|