mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 08:52:20 +01:00
minor update
This commit is contained in:
parent
11af0b1bbc
commit
b4f4a982e4
1 changed files with 1 additions and 1 deletions
|
|
@ -2374,7 +2374,7 @@ def aliasToDbmsEnum(dbms):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
for key, item in DBMS_DICT.items():
|
for key, item in DBMS_DICT.items():
|
||||||
if dbms.lower() in item[0]:
|
if dbms.lower() in item[0] or dbms.lower() == key.lower():
|
||||||
retVal = key
|
retVal = key
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue