Skip to content

Instantly share code, notes, and snippets.

View cooki3monst3r77's full-sized avatar

cooki3monst3r77

View GitHub Profile
function FindProxyForURL(url, host) {
if (shExpMatch(host, "lakota.spi")) {
return "PROXY your.proxy.server:port";
} else {
return "DIRECT";
}
}