Online Proxy PAC or WPAD File Tester
PAC File
PAC Functions Help
function FindProxyForURL(url, host) { if (isPlainHostName(host) || dnsDomainIs(host, ".example.com") || host == "example.com" || shExpMatch(host, "(*.|)google.com") || isInNet(dnsResolve(host), "10.0.0.0", "255.0.0.0") || isInNet(myIpAddress(), "192.168.0.0", "255.255.0.0")) return "DIRECT"; if (shExpMatch(url, "ftp:*")) return "PROXY ftp.proxy.com:3128"; return "PROXY webcache.domain.com:8080"; }
URL
Source IP Address
Override dnsResolve (Optional)
Test Proxy PAC
Log comparison: ==, !=, <, >
The PAC script runs in your browser - it's never uploaded to our servers.
For examples to load into the tester, see the
PAC functions
page.
Source code in my GitHub
repo.