FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaSerialKiller/src/main/java/burp/IHttpListener.java at master · NetSPI/JavaSerialKiller · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
NetSPI
/
JavaSerialKiller
Public
Notifications
You must be signed in to change notification settings
Fork
47
Star
217
Code
Issues
2
Pull requests
7
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaSerialKiller
/
src
/
main
/
java
/
burp
/
IHttpListener.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
35 lines (35 loc) · 1.43 KB
Breadcrumbs
JavaSerialKiller
/
src
/
main
/
java
/
burp
/
IHttpListener.java
Copy path
File metadata and controls
35 lines (35 loc) · 1.43 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package
burp
;
/*
* @(#)burp.IHttpListener.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Free Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
* Extensions can implement this interface and then call
* <code>burp.IBurpExtenderCallbacks.registerHttpListener()</code> 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.
*/
public
interface
IHttpListener
{
/**
* This method is invoked when an HTTP request is about to be issued, and
* when an HTTP response has been received.
*
* @param toolFlag A flag indicating the Burp tool that issued the request.
* Burp tool flags are defined in the
* <code>burp.IBurpExtenderCallbacks</code> interface.
* @param messageIsRequest Flags whether the method is being invoked for a
* request or response.
* @param messageInfo Details of the request / response to be processed.
* Extensions can call the setter methods on this object to update the
* current message and so modify Burp's behavior.
*/
void
processHttpMessage
(
int
toolFlag
,
boolean
messageIsRequest
,
IHttpRequestResponse
messageInfo
);
}
Back
|
FazBrowse Home
|
New Git URL