diff --git a/config/responder/responder.conf b/config/responder/responder.conf index e292d25..ed33a0e 100644 --- a/config/responder/responder.conf +++ b/config/responder/responder.conf @@ -41,10 +41,10 @@ Serve-Always = Off Serve-Exe = Off ; ;Uncomment and specify a custom file to serve, the file must exist. -Filename = Denied.html +Filename = config/responder/Denied.html ; ;Specify a custom executable file to serve, the file must exist. -ExecFilename = FixInternet.exe +ExecFilename = config/responder/FixInternet.exe ; ;Set your custom PAC script WPADScript = function FindProxyForURL(url, host){if ((host == "localhost") || shExpMatch(host, "localhost.*") ||(host == "127.0.0.1") || isPlainHostName(host)) return "DIRECT"; if (dnsDomainIs(host, "RespProxySrv")||shExpMatch(host, "(*.RespProxySrv|RespProxySrv)")) return "DIRECT"; return 'PROXY ISAProxySrv:3141; DIRECT';}