Extension Example 1: Intruder Payload Processing
In this lesson, we will examine a short post to create a plugin for an example use case. This plugin will process the payload from the Intruder and will execute the payload after processing.
Understand public interface IIntruderPayloadProcessor
Extensions can implement the interface IIntruderPayloadProcessor
and then to register a custom Intruder payload processor.
Method Summary
Let’s look at the method in detail.
Method Detail
Implement and register IIntruderPayloadProcessor
To begin with, we need to implement IIntruderPayloadProcessor
. The process is fairly simple after that, as we have done in our previous chapters. First, create a class which implements IIntruderPayloadProcessor
, then register the instance of the class to IBurpExtender.callbacks.registerIntruderPayloadProcessor()
.
The ...