From 08b9fd4d069e234ed726fc6783219d7e5a43bed4 Mon Sep 17 00:00:00 2001 From: byt3bl33d3r Date: Tue, 16 Dec 2014 02:18:04 +0100 Subject: [PATCH] fixed bad paths in responder config --- config/responder/responder.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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';}