FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaSerialKiller/src/main/java/burp/IHttpService.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
/
IHttpService.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
37 lines (35 loc) · 975 Bytes
Breadcrumbs
JavaSerialKiller
/
src
/
main
/
java
/
burp
/
IHttpService.java
Copy path
File metadata and controls
37 lines (35 loc) · 975 Bytes
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
36
37
package
burp
;
/*
* @(#)burp.IHttpService.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.
*/
/**
* This interface is used to provide details about an HTTP service, to which
* HTTP requests can be sent.
*/
public
interface
IHttpService
{
/**
* This method returns the hostname or IP address for the service.
*
* @return The hostname or IP address for the service.
*/
String
getHost
();
/**
* This method returns the port number for the service.
*
* @return The port number for the service.
*/
int
getPort
();
/**
* This method returns the protocol for the service.
*
* @return The protocol for the service. Expected values are "http" or
* "https".
*/
String
getProtocol
();
}
Back
|
FazBrowse Home
|
New Git URL