Skip to content

Instantly share code, notes, and snippets.

@The5imon
The5imon / proxy.pac
Created June 11, 2026 20:59
SOCKS Proxy Pac
function FindProxyForURL(url, host) {
// Try the SOCKS5 proxy first. If it fails, try SOCKS4. If that fails, go DIRECT.
return "SOCKS5 127.0.0.1:8080; SOCKS 127.0.0.1:8080; DIRECT";
}