mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Another minor language patch
This commit is contained in:
parent
41c21ab7f2
commit
51a4cb04a5
2 changed files with 4 additions and 4 deletions
|
|
@ -292,7 +292,7 @@ class Metasploit:
|
|||
|
||||
def _selectRhost(self):
|
||||
if self.connectionStr.startswith("bind"):
|
||||
message = "what is the back-end DBMS address? [%s] " % self.remoteIP
|
||||
message = "what is the back-end DBMS address? [Enter for '%s' (detected)] " % self.remoteIP
|
||||
address = readInput(message, default=self.remoteIP)
|
||||
|
||||
if not address:
|
||||
|
|
@ -308,7 +308,7 @@ class Metasploit:
|
|||
|
||||
def _selectLhost(self):
|
||||
if self.connectionStr.startswith("reverse"):
|
||||
message = "what is the local address? [%s] " % self.localIP
|
||||
message = "what is the local address? [Enter for '%s' (detected)] " % self.localIP
|
||||
address = readInput(message, default=self.localIP)
|
||||
|
||||
if not address:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue