Skip to content

Instantly share code, notes, and snippets.

@flokno
Created June 17, 2025 13:34
Show Gist options
  • Save flokno/77b4075f825d8fd88123ae38a0577705 to your computer and use it in GitHub Desktop.
Save flokno/77b4075f825d8fd88123ae38a0577705 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
if (shExpMatch(host, "*.tc.corp")) {
return "SOCKS5 sapphire:1337; SOCKS5 localhost:1337; DIRECT";
}
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment