Package burp.api.montoya.collaborator
Interface Collaborator
-
public interface CollaboratorThis interface provides access to the facilities of Burp Collaborator.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CollaboratorClientcreateClient()This method is used to create a new Burp Collaborator client that can be used to generate Burp Collaborator payloads and poll the Collaborator server for any network interactions that result from using those payloads.CollaboratorClientrestoreClient(SecretKey secretKey)This method is used to restore aCollaboratorClientfrom a previous session.
-
-
-
Method Detail
-
createClient
CollaboratorClient createClient()
This method is used to create a new Burp Collaborator client that can be used to generate Burp Collaborator payloads and poll the Collaborator server for any network interactions that result from using those payloads.- Returns:
- A new instance of
CollaboratorClientthat can be used to generate Collaborator payloads and retrieve interactions.
-
restoreClient
CollaboratorClient restoreClient(SecretKey secretKey)
This method is used to restore aCollaboratorClientfrom a previous session. This allows you to retrieve the interactions that were identified from a specific payloads.- Parameters:
secretKey- The key to restore theCollaboratorClientfrom the previous session.- Returns:
- A new instance of
CollaboratorClientthat can be used to generate Collaborator payloads and retrieve interactions.
-
-