Package burp.api.montoya.intruder
Interface PayloadGenerator
-
public interface PayloadGeneratorThis interface is used for custom Intruder payload generators. Extensions that have registered aPayloadGeneratorProvidermust return a new instance of this interface when required as part of a new Intruder attack.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PayloadgeneratePayloadFor(IntruderInsertionPoint insertionPoint)This method is used by Burp to obtain the value of the next payload.
-
-
-
Method Detail
-
generatePayloadFor
Payload generatePayloadFor(IntruderInsertionPoint insertionPoint)
This method is used by Burp to obtain the value of the next payload. This method should returnPayload.ENDto signal to Burp that the generator has finished.- Parameters:
insertionPoint- Insertion point for the payload.- Returns:
- A generated Intruder payload.
-
-