From 08e44d72acd563910c153749b3c204ce0304bdd1 Mon Sep 17 00:00:00 2001 From: lgandx Date: Thu, 4 Jan 2024 15:38:41 -0300 Subject: [PATCH] removed useless string --- settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings.py b/settings.py index 6d085d6..279f579 100755 --- a/settings.py +++ b/settings.py @@ -23,7 +23,7 @@ import subprocess from utils import * -__version__ = 'Responder 3.1.3.0' +__version__ = 'Responder 3.1.4.0' class Settings: @@ -236,7 +236,7 @@ class Settings: self.HtmlToInject = config.get('HTTP Server', 'HtmlToInject') if len(self.HtmlToInject) == 0: - self.HtmlToInject = "Loading" + self.HtmlToInject = ""# Let users set it up themself in Responder.conf. "Loading" if len(self.WPAD_Script) == 0: self.WPAD_Script = 'function FindProxyForURL(url, host){if ((host == "localhost") || shExpMatch(host, "localhost.*") ||(host == "127.0.0.1") || isPlainHostName(host)) return "DIRECT"; return "PROXY '+self.Bind_To+':3128; PROXY '+self.Bind_To+':3141; DIRECT";}'