forked from zaproxy/zaproxy
-
Notifications
You must be signed in to change notification settings - Fork 2
ProxyListener
thc202 edited this page Jan 29, 2020
·
3 revisions
The ProxyListener class is one of the ExtensionHooks that allows you to view and change all requests and responses.
To use it you will need to create a class that implements it and then hook it in by overriding the Extension 'hook' method, eg:
@Override
public void hook(ExtensionHook extensionHook) {
extensionHook.addProxyListener(getMyProxyListener());
}
See the ProxyListener source code for details of the methods it supports.