Tagged Questions

4
votes
3answers
3k views

Debugging autoproxy (PAC) javascript with alert()?

I am writing a custom .pac script for use with Firefox. Following numerous examples I've seen, I intersperse alert()s in order to debug it, but no alerts popup, even though the script is clearly being ...
3
votes
1answer
2k views

How To Authenticate Socks 5 Proxies Inside PAC (Proxy Auto Config) Files

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 ...
2
votes
1answer
110 views

javascript get my local LAN ip address

I have quite happily set up pac files using myIpAddress() as a function to resolve the local IP on my LAN to load balance my proxies. I now need to use this function, or anything that works simply, ...
2
votes
1answer
175 views

IsInNet for ASP

First Post. So I am working on a project due to some drawbacks to the abilities of a standard PAC file. Basically we need to route proxy rules based on the internal subnet of the requester. ...
2
votes
1answer
156 views

Where in Windows is the Javascript file which contains functions for executing PAC files?

Proxy Auto Config (PAC) is the traditional method by which web-browsers are automatically configured to use the appropriate proxy for any given site. PAC files consist of a single function implemented ...