mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Fixes #1753
This commit is contained in:
parent
3307918389
commit
e1ce16144a
3 changed files with 3 additions and 3 deletions
|
|
@ -26,7 +26,7 @@ def setDbms(dbms):
|
|||
hashDBWrite(HASHDB_KEYS.DBMS, dbms)
|
||||
|
||||
_ = "(%s)" % ("|".join([alias for alias in SUPPORTED_DBMS]))
|
||||
_ = re.search("^%s" % _, dbms, re.I)
|
||||
_ = re.search(r"\A%s( |\Z)" % _, dbms, re.I)
|
||||
|
||||
if _:
|
||||
dbms = _.group(1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue