Package burp.api.montoya.repeater
Interface Repeater
public interface Repeater
Provides access to the functionality of the Repeater tool.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
sendToRepeater
(HttpRequest request) This method can be used to send an HTTP request to the Burp Repeater tool.void
sendToRepeater
(HttpRequest request, String name) This method can be used to send an HTTP request to the Burp Repeater tool.
-
Method Details
-
sendToRepeater
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 sent until the user initiates this action.- Parameters:
request
- The full HTTP request.
-
sendToRepeater
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:
request
- The full HTTP request.name
- An optional caption which will appear on the Repeater tab containing the request. If this value isnull
then a default tab index will be displayed.
-