mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-26 11:33:47 +03:00
minor update
This commit is contained in:
parent
73e5d20ade
commit
3173adbf6b
|
@ -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('.')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user