2019-05-08 12:47:52 +02:00
|
|
|
#!/usr/bin/env python
|
2017-04-12 10:54:29 +02: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
|
2017-04-12 10:54:29 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
|
|
2018-02-08 16:49:16 +01:00
|
|
|
__priority__ = PRIORITY.NORMAL
|
2017-04-12 10:54:29 +02:00
|
|
|
|
|
|
|
|
def dependencies():
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def tamper(payload, **kwargs):
|
|
|
|
|
"""
|
2018-07-31 01:17:11 +02:00
|
|
|
Prepends (inline) comment before parentheses (e.g. ( -> /**/()
|
2017-04-12 10:54:29 +02:00
|
|
|
|
|
|
|
|
Tested against:
|
|
|
|
|
* Microsoft SQL Server
|
|
|
|
|
* MySQL
|
|
|
|
|
* Oracle
|
|
|
|
|
* PostgreSQL
|
|
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
|
* Useful to bypass web application firewalls that block usage
|
|
|
|
|
of function calls
|
|
|
|
|
|
|
|
|
|
>>> tamper('SELECT ABS(1)')
|
|
|
|
|
'SELECT ABS/**/(1)'
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
retVal = payload
|
|
|
|
|
|
|
|
|
|
if payload:
|
2018-06-09 23:38:00 +02:00
|
|
|
retVal = re.sub(r"\b(\w+)\(", r"\g<1>/**/(", retVal)
|
2017-04-12 10:54:29 +02:00
|
|
|
|
|
|
|
|
return retVal
|