Interface PayloadGenerator


  • public interface PayloadGenerator
    This interface is used for custom Intruder payload generators. Extensions that have registered a PayloadGeneratorProvider must return a new instance of this interface when required as part of a new Intruder attack.
    • Method Detail

      • generatePayloadFor

        Payload generatePayloadFor​(IntruderInsertionPoint insertionPoint)
        This method is used by Burp to obtain the value of the next payload. This method should return Payload.END to signal to Burp that the generator has finished.
        Parameters:
        insertionPoint - Insertion point for the payload.
        Returns:
        A generated Intruder payload.