Package burp
Interface IBurpExtender
-
public interface IBurpExtenderAll extensions must implement this interface. Implementations must be called BurpExtender, in the package burp, must be declared public, and must provide a default (public, no-argument) constructor.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidregisterExtenderCallbacks(IBurpExtenderCallbacks callbacks)This method is invoked when the extension is loaded.
-
-
-
Method Detail
-
registerExtenderCallbacks
void registerExtenderCallbacks(IBurpExtenderCallbacks callbacks)
This method is invoked when the extension is loaded. It registers an instance of theIBurpExtenderCallbacksinterface, providing methods that may be invoked by the extension to perform various actions.- Parameters:
callbacks- AnIBurpExtenderCallbacksobject.
-
-