Class: Buby::HttpListener
- Includes:
- Java::Burp::IHttpListener
- Defined in:
- lib/buby/http_listener.rb
Overview
Extensions can implement this interface and then call #registerHttpListener to register an HTTP listener. The listener will be notified of requests and responses made by any Burp tool. Extensions can perform custom analysis or modification of these messages by registering an HTTP listener.
Instance Method Summary collapse
-
#processHttpMessage(toolFlag, messageIsRequest, messageInfo) ⇒ Object
This method is invoked when an HTTP request is about to be issued, and when an HTTP response has been received.
Instance Method Details
#processHttpMessage(toolFlag, messageIsRequest, messageInfo) ⇒ Object
TODO:
move HttpRequestResponse to new implant scheme
This method is invoked when an HTTP request is about to be issued, and when an HTTP response has been received.
24 25 26 27 |
# File 'lib/buby/http_listener.rb', line 24 def processHttpMessage(toolFlag, , ) pp [:got_processHttpMessage, toolFlag, , ] if $DEBUG Buby::HttpRequestResponseHelper.implant() end |