mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-14 15:14:31 +03:00
minor update before bedtime
This commit is contained in:
parent
ae12dee990
commit
58f8703ecd
|
@ -1214,9 +1214,9 @@ class Enumeration:
|
|||
retVal = value
|
||||
if isinstance(value, basestring) and not re.match(r"\A[A-Za-z0-9_]+\Z", value):
|
||||
if Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.ACCESS):
|
||||
retVal = "`%s`" % value
|
||||
retVal = "`%s`" % value.strip("`")
|
||||
elif Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.ORACLE, DBMS.PGSQL):
|
||||
retVal = "\"%s\"" % value
|
||||
retVal = "\"%s\"" % value.strip("\"")
|
||||
return retVal
|
||||
|
||||
def dumpTable(self):
|
||||
|
|
Loading…
Reference in New Issue
Block a user