mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +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):
|
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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user