burp
Interface IBurpCollaboratorInteraction


public interface IBurpCollaboratorInteraction

This interface represents a network interaction that occurred with the Burp Collaborator server.


Method Summary
 java.util.Map<java.lang.String,java.lang.String> getProperties()
          This method is used to retrieve a map containing all properties of the interaction.
 java.lang.String getProperty(java.lang.String name)
          This method is used to retrieve a property of the interaction.
 

Method Detail

getProperty

java.lang.String getProperty(java.lang.String name)
This method is used to retrieve a property of the interaction. Properties of all interactions are: interaction_id, type, client_ip, and time_stamp. Properties of DNS interactions are: query_type and raw_query. The raw_query value is Base64-encoded. Properties of HTTP interactions are: protocol, request, and response. The request and response values are Base64-encoded.

Parameters:
name - The name of the property to retrieve.
Returns:
A string representing the property value, or null if not present.

getProperties

java.util.Map<java.lang.String,java.lang.String> getProperties()
This method is used to retrieve a map containing all properties of the interaction.

Returns:
A map containing all properties of the interaction.