mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-14 12:24:56 +01:00
Minor bug fix to -d
This commit is contained in:
parent
3f2db471f5
commit
7c3773a5d7
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue