Interface Repeater


public interface Repeater
Provides access to the functionality of the Repeater tool.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This method can be used to send an HTTP request to the Burp Repeater tool.
    void
    This method can be used to send an HTTP request to the Burp Repeater tool.
  • Method Details

    • sendToRepeater

      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 sent until the user initiates this action.
      Parameters:
      request - The full HTTP request.
    • sendToRepeater

      void sendToRepeater(HttpRequest request, String name)
      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 is null then a default tab index will be displayed.