mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Minor bug fix to -d
This commit is contained in:
parent
3f2db471f5
commit
7c3773a5d7
|
@ -40,7 +40,7 @@ class Connector:
|
|||
|
||||
def initConnection(self):
|
||||
self.user = conf.dbmsUser
|
||||
self.password = conf.dbmsPass
|
||||
self.password = conf.dbmsPass if conf.dbmsPass is not None else ""
|
||||
self.hostname = conf.hostname
|
||||
self.port = conf.port
|
||||
self.db = conf.dbmsDb
|
||||
|
|
Loading…
Reference in New Issue
Block a user