Skip to content

Instantly share code, notes, and snippets.

@JoelQFernandez
Created September 28, 2012 02:06
Show Gist options
  • Save JoelQFernandez/3797577 to your computer and use it in GitHub Desktop.
Save JoelQFernandez/3797577 to your computer and use it in GitHub Desktop.
Proxy Pac - CTV
// Bypass CTV Blocking.
// Circumventing Geo Blocking Requires Adding A Header
// Firefox Plugin Or Using SOCKS 5 Proxy.
function FindProxyForURL(url, host)
{
if (dnsDomainIs(host, ".esi.ctv.ca")
|| dnsDomainIs(host, ".esi2.ctv.ca"))
{
return "SOCKS 7207.96.241.74:38261";
}
else
{
return "DIRECT";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment