public interface ISessionHandlingAction
IBurpExtenderCallbacks.registerSessionHandlingAction()
to
register a custom session handling action. Each registered action will be
available within the session handling rule UI for the user to select as a
rule action. Users can choose to invoke an action directly in its own right,
or following execution of a macro.Modifier and Type | Method and Description |
---|---|
java.lang.String |
getActionName()
This method is used by Burp to obtain the name of the session handling
action.
|
void |
performAction(IHttpRequestResponse currentRequest,
IHttpRequestResponse[] macroItems)
This method is invoked when the session handling action should be
executed.
|
java.lang.String getActionName()
void performAction(IHttpRequestResponse currentRequest, IHttpRequestResponse[] macroItems)
currentRequest
- The base request that is currently being processed.
The action can query this object to obtain details about the base
request. It can issue additional requests of its own if necessary, and
can use the setter methods on this object to update the base request.macroItems
- If the action is invoked following execution of a
macro, this parameter contains the result of executing the macro.
Otherwise, it is
null
. Actions can use the details of the macro items to
perform custom analysis of the macro to derive values of non-standard
session handling tokens, etc.