mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-15 20:29:04 +00:00
Minor bug fix to -d
This commit is contained in:
@@ -40,7 +40,7 @@ class Connector:
|
|||||||
|
|
||||||
def initConnection(self):
|
def initConnection(self):
|
||||||
self.user = conf.dbmsUser
|
self.user = conf.dbmsUser
|
||||||
self.password = conf.dbmsPass
|
self.password = conf.dbmsPass if conf.dbmsPass is not None else ""
|
||||||
self.hostname = conf.hostname
|
self.hostname = conf.hostname
|
||||||
self.port = conf.port
|
self.port = conf.port
|
||||||
self.db = conf.dbmsDb
|
self.db = conf.dbmsDb
|
||||||
|
|||||||
Reference in New Issue
Block a user