2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2015-03-26 13:57:51 +03:00
|
|
|
|
|
|
|
"""
|
2021-09-08 22:01:41 +03:00
|
|
|
Copyright (c) 2006-2021 sqlmap developers (https://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2015-03-26 13:57:51 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from lib.core.enums import PRIORITY
|
|
|
|
|
2018-02-08 18:49:16 +03:00
|
|
|
__priority__ = PRIORITY.NORMAL
|
2015-03-26 13:57:51 +03:00
|
|
|
|
|
|
|
def tamper(payload, **kwargs):
|
|
|
|
"""
|
2018-07-31 03:18:33 +03:00
|
|
|
Add an inline comment (/**/) to the end of all occurrences of (MySQL) "information_schema" identifier
|
2015-03-26 13:57:51 +03:00
|
|
|
|
|
|
|
>>> tamper('SELECT table_name FROM INFORMATION_SCHEMA.TABLES')
|
|
|
|
'SELECT table_name FROM INFORMATION_SCHEMA/**/.TABLES'
|
|
|
|
"""
|
|
|
|
|
|
|
|
retVal = payload
|
|
|
|
|
|
|
|
if payload:
|
2018-06-10 00:38:00 +03:00
|
|
|
retVal = re.sub(r"(?i)(information_schema)\.", r"\g<1>/**/.", payload)
|
2015-03-26 13:57:51 +03:00
|
|
|
|
|
|
|
return retVal
|