Sha256: b9c2632b82d94b20008cbb1bb1188a14f94045706d9dcb5b5a47375ce55ecd2a

Contents?: true

Size: 1.45 KB

Versions: 8

Compression:

Stored size: 1.45 KB

Contents

package burp;

/*
 * @(#)IHttpListener.java
 *
 * Copyright PortSwigger Ltd. All rights reserved.
 *
 * This code may be used to extend the functionality of Burp Suite Free Edition
 * and Burp Suite Professional, provided that this usage does not violate the
 * license terms for those products.
 */
/**
 * Extensions can implement this interface and then call
 * <code>IBurpExtenderCallbacks.registerHttpListener()</code> to register an
 * HTTP listener. The listener will be notified of requests and responses made
 * by any Burp tool. Extensions can perform custom analysis or modification of
 * these messages by registering an HTTP listener.
 */
public interface IHttpListener
{
    /**
     * This method is invoked when an HTTP request is about to be issued, and
     * when an HTTP response has been received.
     *
     * @param toolFlag A flag indicating the Burp tool that issued the request.
     * Burp tool flags are defined in the
     * <code>IBurpExtenderCallbacks</code> interface.
     * @param messageIsRequest Flags whether the method is being invoked for a
     * request or response.
     * @param messageInfo Details of the request / response to be processed.
     * Extensions can call the setter methods on this object to update the
     * current message and so modify Burp's behavior.
     */
    void processHttpMessage(int toolFlag,
            boolean messageIsRequest,
            IHttpRequestResponse messageInfo);
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
buby-1.6.0-java ext/burp_interfaces/burp/IHttpListener.java
buby-1.5.2-java ext/burp_interfaces/burp/IHttpListener.java
buby-1.5.1-java ext/burp_interfaces/burp/IHttpListener.java
buby-1.5.0-java ext/burp_interfaces/burp/IHttpListener.java
buby-1.5.0.pre4-java ext/burp_interfaces/burp/IHttpListener.java
buby-1.5.0.pre3-java ext/burp_interfaces/burp/IHttpListener.java
buby-1.5.0.pre2-java ext/burp_interfaces/burp/IHttpListener.java
buby-1.5.0.pre1-java ext/burp_interfaces/burp/IHttpListener.java