mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Refactoring DBMS string escaping functions
This commit is contained in:
@@ -5,6 +5,8 @@ Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
|
||||
See the file 'doc/COPYING' for copying permission
|
||||
"""
|
||||
|
||||
import re
|
||||
|
||||
from lib.core.exception import SqlmapUndefinedMethod
|
||||
|
||||
class Syntax:
|
||||
@@ -15,6 +17,18 @@ class Syntax:
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
@staticmethod
|
||||
def _escape(expression, quote=True, escaper=None):
|
||||
retVal = expression
|
||||
|
||||
if quote:
|
||||
for item in re.findall(r"'[^']+'", expression, re.S):
|
||||
retVal = retVal.replace(item, escaper(item[1:-1]))
|
||||
else:
|
||||
retVal = escaper(expression)
|
||||
|
||||
return retVal
|
||||
|
||||
@staticmethod
|
||||
def escape(expression, quote=True):
|
||||
errMsg = "'escape' method must be defined "
|
||||
|
||||
Reference in New Issue
Block a user