mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 04:31:30 +00:00
minor update
This commit is contained in:
@@ -1215,7 +1215,7 @@ class Enumeration:
|
|||||||
"""
|
"""
|
||||||
retVal = value
|
retVal = value
|
||||||
if isinstance(value, basestring):
|
if isinstance(value, basestring):
|
||||||
if isTable and Backend.getIdentifiedDbms() == DBMS.MSSQL and '.' not in value:
|
if isTable and Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE) and '.' not in value:
|
||||||
value = "%s.%s" % (DEFAULT_MSSQL_SCHEMA, value)
|
value = "%s.%s" % (DEFAULT_MSSQL_SCHEMA, value)
|
||||||
|
|
||||||
parts = value.split('.')
|
parts = value.split('.')
|
||||||
|
|||||||
Reference in New Issue
Block a user