sqlmap/tamper/lowercase.py

46 lines
1002 B
Python
Raw Normal View History

2019-05-08 13:47:52 +03:00
#!/usr/bin/env python
2014-04-22 10:48:12 +04:00
"""
2023-01-03 01:24:59 +03:00
Copyright (c) 2006-2023 sqlmap developers (https://sqlmap.org/)
2017-10-11 15:50:46 +03:00
See the file 'LICENSE' for copying permission
2014-04-22 10:48:12 +04:00
"""
import re
from lib.core.data import kb
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.NORMAL
def dependencies():
pass
def tamper(payload, **kwargs):
"""
2018-07-31 03:18:33 +03:00
Replaces each keyword character with lower case value (e.g. SELECT -> select)
2014-04-22 10:48:12 +04:00
Tested against:
* Microsoft SQL Server 2005
* MySQL 4, 5.0 and 5.5
* Oracle 10g
* PostgreSQL 8.3, 8.4, 9.0
Notes:
* Useful to bypass very weak and bespoke web application firewalls
that has poorly written permissive regular expressions
>>> tamper('INSERT')
'insert'
"""
retVal = payload
if payload:
2018-02-08 18:49:16 +03:00
for match in re.finditer(r"\b[A-Za-z_]+\b", retVal):
2014-04-22 10:48:12 +04:00
word = match.group()
if word.upper() in kb.keywords:
retVal = retVal.replace(word, word.lower())
return retVal