Sha256: 844b533287f8e7e6084c3a39f5539f62f19e442a1cd4bd64d6a9f43b6ef3fffd

Contents?: true

Size: 1.41 KB

Versions: 8

Compression:

Stored size: 1.41 KB

Contents

package burp;

/*
 * @(#)IScannerInsertionPointProvider.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.
 */
import java.util.List;

/**
 * Extensions can implement this interface and then call
 * <code>IBurpExtenderCallbacks.registerScannerInsertionPointProvider()</code>
 * to register a factory for custom Scanner insertion points.
 */
public interface IScannerInsertionPointProvider
{
    /**
     * When a request is actively scanned, the Scanner will invoke this method,
     * and the provider should provide a list of custom insertion points that
     * will be used in the scan. <b>Note:</b> these insertion points are used in
     * addition to those that are derived from Burp Scanner's configuration, and
     * those provided by any other Burp extensions.
     *
     * @param baseRequestResponse The base request that will be actively
     * scanned.
     * @return A list of
     * <code>IScannerInsertionPoint</code> objects that should be used in the
     * scanning, or
     * <code>null</code> if no custom insertion points are applicable for this
     * request.
     */
    List<IScannerInsertionPoint> getInsertionPoints(
            IHttpRequestResponse baseRequestResponse);
}

Version data entries

8 entries across 8 versions & 1 rubygems

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