Package burp.api.montoya.intruder
Interface PayloadGeneratorProvider
-
public interface PayloadGeneratorProviderExtensions can implement this interface and then callIntruder.registerPayloadGeneratorProvider(burp.api.montoya.intruder.PayloadGeneratorProvider)to register a provider for custom Intruder payload generators.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringdisplayName()This method returns the name Burp will use when displaying the payload generator in a dropdown list in the UI.PayloadGeneratorprovidePayloadGenerator(AttackConfiguration attackConfiguration)This method is called by Burp to obtain an instance ofPayloadGeneratorto add to Intruder.
-
-
-
Method Detail
-
displayName
java.lang.String displayName()
This method returns the name Burp will use when displaying the payload generator in a dropdown list in the UI.- Returns:
- Name of the payload generator.
-
providePayloadGenerator
PayloadGenerator providePayloadGenerator(AttackConfiguration attackConfiguration)
This method is called by Burp to obtain an instance ofPayloadGeneratorto add to Intruder.- Parameters:
attackConfiguration- An object containing information about the currently selected attack configuration tab.- Returns:
- An instance of an object that implements the
PayloadGeneratorinterface.
-
-