Web Proxy Auto-Discovery

The Web Proxy Auto-Discovery (WPAD) Protocol is a method used by clients to locate the URL of a Proxy auto-config (PAC) configuration file using DHCP and/or DNS discovery methods.

While greatly simplifying configuration of one organisation's web browsers, the WPAD protocol can open doors for attackers to change what appears on a user's browser.

This site exists only as a security measure, to prevent WPAD DNS queries for this domain or it's subdomains from leaking to higher level domains.
It configures browsers to contact websites directly, without using a (possibly malicious) proxy.

Files served here:

Our very simple Proxy auto-config (PAC) JavaScript function:


// Legacy
function FindProxyForURL(url, host)
{
  return "DIRECT";
}
// IPv6-Aware
function FindProxyForURLEx(url, host)
{
  return "DIRECT";
}