forked from zaproxy/zaproxy
-
Notifications
You must be signed in to change notification settings - Fork 2
FAQSelectiveProxy
kingthorin edited this page May 16, 2018
·
6 revisions
There are a number of ways to accomplish selective proxying.
- Such as FoxyProxy: https://getfoxyproxy.org/
- Leveraging Global Excludes you can specify URLs that ZAP should not proxy.
- You can create your own PAC (Proxy Auto-Config) file and dynamically set
proxying as you need, then point your browser at it on your harddrive using
the
file:///
scheme. For example:
function FindProxyForURL(url, host) {
if (shExpMatch(host, "*.example.org")) {
return "PROXY localhost:8080"; //Use ZAP for *.example.org
}
// Go directly to the WWW for everything else
return "DIRECT";
}
- Most modern browsers allow users to specify domains or networks for which the traffic should not be proxied.