javascript - How To Authenticate Socks 5 Proxies Inside PAC (Proxy Auto Config) Files -
How can you set up PAC files to use SOCKS proxy with authentication?
An example using this simple PAC file:
function FindProxyForURL (url, host) {return "socks 69.123.133.75:7257;"; }
How do you connect with that socks proxy using a username and password?
Since Firefox and MSE do not support socks 5 authentication, therefore the username and password in the PAC file It is impossible to specify, modify your browser without any options.
Comments
Post a Comment