mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
isDbmsWithin() must stay like this, no getIdentifiedDbms() in there
This commit is contained in:
@@ -429,12 +429,7 @@ class Backend:
|
||||
|
||||
@staticmethod
|
||||
def isDbmsWithin(aliases):
|
||||
if Backend.getDbms() is not None:
|
||||
return Backend.getDbms().lower() in aliases
|
||||
elif Backend.getIdentifiedDbms() is not None:
|
||||
return Backend.getIdentifiedDbms().lower() in aliases
|
||||
else:
|
||||
return False
|
||||
return Backend.getDbms() is not None and Backend.getDbms().lower() in aliases
|
||||
|
||||
@staticmethod
|
||||
def isVersion(version):
|
||||
|
||||
Reference in New Issue
Block a user