Skip to content

Instantly share code, notes, and snippets.

@cainejette
Created December 11, 2019 19:44
Show Gist options
  • Save cainejette/064cb3f467c0454a6df765d960371ae8 to your computer and use it in GitHub Desktop.
Save cainejette/064cb3f467c0454a6df765d960371ae8 to your computer and use it in GitHub Desktop.
SOCKS proxy
function FindProxyForURL(url, host) {
if (isInNet(dnsResolve(host), "10.0.0.0", "255.0.0.0"))
return "SOCKS 127.0.0.1:9999";
// Default to using no proxy.
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment