diff --git a/lib/takeover/icmpsh.py b/lib/takeover/icmpsh.py index cdcd3f26d..240ed1e46 100644 --- a/lib/takeover/icmpsh.py +++ b/lib/takeover/icmpsh.py @@ -33,13 +33,13 @@ class ICMPsh: self.__icmpslave = normalizePath(os.path.join(paths.SQLMAP_EXTRAS_PATH, "icmpsh", "icmpsh.exe")) def __selectRhost(self): - message = "which is the back-end DBMS address? [%s] " % self.remoteIP + message = "what is the back-end DBMS address? [%s] " % self.remoteIP address = readInput(message, default=self.remoteIP) return address def __selectLhost(self): - message = "which is the local address? [%s] " % self.localIP + message = "what is the local address? [%s] " % self.localIP address = readInput(message, default=self.localIP) return address diff --git a/lib/takeover/metasploit.py b/lib/takeover/metasploit.py index 66fc60cd9..3dd3c8dc8 100644 --- a/lib/takeover/metasploit.py +++ b/lib/takeover/metasploit.py @@ -269,7 +269,7 @@ class Metasploit: def __selectRhost(self): if self.connectionStr.startswith("bind"): - message = "which is the back-end DBMS address? [%s] " % self.remoteIP + message = "what is the back-end DBMS address? [%s] " % self.remoteIP address = readInput(message, default=self.remoteIP) if not address: @@ -285,7 +285,7 @@ class Metasploit: def __selectLhost(self): if self.connectionStr.startswith("reverse"): - message = "which is the local address? [%s] " % self.localIP + message = "what is the local address? [%s] " % self.localIP address = readInput(message, default=self.localIP) if not address: diff --git a/lib/takeover/udf.py b/lib/takeover/udf.py index ad29b0883..b067a7d76 100644 --- a/lib/takeover/udf.py +++ b/lib/takeover/udf.py @@ -185,7 +185,7 @@ class UDF: logger.warn(warnMsg) if not conf.shLib: - msg = "which is the local path of the shared library? " + msg = "what is the local path of the shared library? " while True: self.udfLocalFile = readInput(msg)