How can you setup PAC files to use SOCKS proxies with authentication?
Using this simple PAC file as an example:
function FindProxyForURL(url, host) { return "SOCKS 69.123.133.75:7257;"; }
How would you connect to that socks proxy using a username and password?