mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Fixes #1753
This commit is contained in:
parent
3307918389
commit
e1ce16144a
3 changed files with 3 additions and 3 deletions
|
|
@ -451,7 +451,7 @@ def _resumeDBMS():
|
|||
dbms = value.lower()
|
||||
dbmsVersion = [UNKNOWN_DBMS_VERSION]
|
||||
_ = "(%s)" % ("|".join([alias for alias in SUPPORTED_DBMS]))
|
||||
_ = re.search("%s ([\d\.]+)" % _, dbms, re.I)
|
||||
_ = re.search(r"\A%s (.*)" % _, dbms, re.I)
|
||||
|
||||
if _:
|
||||
dbms = _.group(1).lower()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue