Package burp.api.montoya.repeater
Interface Repeater
-
public interface RepeaterThis interface provides access to the functionality of the Repeater tool.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidsendToRepeater(HttpRequest request)This method can be used to send an HTTP request to the Burp Repeater tool.voidsendToRepeater(java.lang.String name, HttpRequest request)This method can be used to send an HTTP request to the Burp Repeater tool.
-
-
-
Method Detail
-
sendToRepeater
default void sendToRepeater(HttpRequest request)
This method can be used to send an HTTP request to the Burp Repeater tool. The request will be displayed in the user interface using a default tab index, but will not be issued until the user initiates this action.- Parameters:
request- The full HTTP request.
-
sendToRepeater
void sendToRepeater(java.lang.String name, HttpRequest request)This method can be used to send an HTTP request to the Burp Repeater tool. The request will be displayed in the user interface, but will not be issued until the user initiates this action.- Parameters:
name- An optional caption which will appear on the Repeater tab containing the request. If this value isnullthen a default tab index will be displayed.request- The full HTTP request.
-
-