Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/monkeyWie/proxyee
HTTP proxy server,support HTTPS&websocket.MITM impl,intercept and tamper HTTPS traffic.
https://github.com/monkeyWie/proxyee
http https java mitm mitmproxy netty proxy proxy-server
Last synced: 4 days ago
JSON representation
HTTP proxy server,support HTTPS&websocket.MITM impl,intercept and tamper HTTPS traffic.
- Host: GitHub
- URL: https://github.com/monkeyWie/proxyee
- Owner: monkeyWie
- License: mit
- Created: 2017-09-04T01:50:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-25T20:14:50.000Z (7 months ago)
- Last Synced: 2024-10-29T17:33:42.773Z (5 days ago)
- Topics: http, https, java, mitm, mitmproxy, netty, proxy, proxy-server
- Language: Java
- Homepage:
- Size: 479 KB
- Stars: 1,530
- Watchers: 60
- Forks: 572
- Open Issues: 109
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - monkeyWie/proxyee - HTTP proxy server,support HTTPS&websocket.MITM impl,intercept and tamper HTTPS traffic. (Java)
README
Proxyee
[![maven](https://img.shields.io/maven-central/v/com.github.monkeywie/proxyee.svg)](https://search.maven.org/search?q=com.github.monkeywie)
[![license](https://img.shields.io/github/license/monkeywie/proxyee.svg)](https://opensource.org/licenses/MIT)
[English](/README.md) | [中文](/README_zh-CN.md)
---
## Introduction
Proxyee is a JAVA written HTTP proxy server library that supports HTTP, HTTPS, Websocket protocols, and supports MITM (Man-in-the-middle), which can capture and tamper with HTTP, HTTPS packet.
## Usage
```xml
com.github.monkeywie
proxyee
1.7.6```
## Demo
- Normal HTTP proxy
```java
new HttpProxyServer().start(9999);
```- MITM HTTP proxy
The following is a demonstration of a MITM attack that modifies the response header and response body when visiting the Baidu homepage, as shown in the figure below:
![20200724152245](https://raw.githubusercontent.com/monkeyWie/pic-bed/master/proxyee/20200724152245.png)
Code:
```java
HttpProxyServerConfig config = new HttpProxyServerConfig();
//enable HTTPS support
//If not enabled, HTTPS will not be intercepted, but forwarded directly to the raw packet.
config.setHandleSsl(true);
new HttpProxyServer()
.serverConfig(config)
.proxyInterceptInitializer(new HttpProxyInterceptInitializer() {
@Override
public void init(HttpProxyInterceptPipeline pipeline) {
pipeline.addLast(new FullResponseIntercept() {@Override
public boolean match(HttpRequest httpRequest, HttpResponse httpResponse, HttpProxyInterceptPipeline pipeline) {
//Insert js when matching to Baidu homepage
return HttpUtil.checkUrl(pipeline.getHttpRequest(), "^www.baidu.com$")
&& isHtml(httpRequest, httpResponse);
}@Override
public void handleResponse(HttpRequest httpRequest, FullHttpResponse httpResponse, HttpProxyInterceptPipeline pipeline) {
//Print raw packet
System.out.println(httpResponse.toString());
System.out.println(httpResponse.content().toString(Charset.defaultCharset()));
//Edit response header and response body
httpResponse.headers().set("handel", "edit head");
httpResponse.content().writeBytes("alert('hello proxyee')".getBytes());
}
});
}
})
.start(9999);
```> Note: When https support is enabled, you need to install the CA certificate (`src/resources/ca.crt`) to a trusted root certificate authority.
More demo code can be found in the test package.
## HTTPS support
The CA certificate (src/resources/ca.crt) from the project needs to be imported to a trusted root certificate authority.
You can use the CertDownIntercept interceptor to enable the web certificate download feature, visit http://serverIP:serverPort to access.> Note 1: If the certificate installation on Android phones pops up the password stored in your credentials, just enter the lock screen password.
>
> Note 2: Android 7 and above, the system no longer trusts user-installed certificates, you need to root and use the
> cat ca.crt > $(openssl x509 -inform PEM -subject_hash_old -in ca.crt | head -1).0
> command generates the d1488b25.0 file, and then moves the file to the
> /system/etc/security/cacerts/
> And give 644 access.
>
> Note 3: In Android 7 and above, even if you add the certificate to the system certificate, this certificate does not work in chrome. The reason is that chrome will only trust certificates with validity less than 27 months from 2018 (https://www.entrustdatacard.com/blog/2018/february/chrome-requires-ct-after-april-2018). So you need to generate the certificate file yourself.### Custom CA
Since the root certificate and private key attached to the project are public, they are only suitable for local development and debugging, please generate your own root certificate and private key when using in the official environment, otherwise there will be risks.
- running the main method of the`com.github.monkeywie.proxyee.crt.CertUtil` class
- use openssl
```sh
openssl genrsa -out ca.key 2048
openssl pkcs8 -topk8 -nocrypt -inform PEM -outform DER -in ca.key -out ca_private.der
openssl req -sha256 -new -x509 -days 365 -key ca.key -out ca.crt \
-subj "/C=CN/ST=GD/L=SZ/O=lee/OU=study/CN=testRoot"
```Copy `ca.crt` and `ca_private.der` to the project src/resources/ after generation, or implement the HttpProxyCACertFactory interface to custom load the root certificate and private key.
### Rules for MITM
If you only want to perform MITM attacks on certain domains, you can use the `HttpProxyServerConfig.setMitmMatcher` method to set the matching rule, for example:
```java
HttpProxyServerConfig config = new HttpProxyServerConfig();
config.setHandleSsl(true);
// only MITM on www.baidu.com
config.setMitmMatcher(new DomainHttpProxyMitmMatcher(Arrays.asList("www.baidu.com")));
```Now the built-in `DomainHttpProxyMitmMatcher` is an exact match for the request domain. If you have other requirements, you can implement the `HttpProxyMitmMatcher` interface to customize the matching rules.
## Authentication
Currently only basic authentication are supported.
- Basic
```java
// curl -i -x 127.0.0.1:9999 -U admin:123456 http://www.baidu.com
HttpProxyServerConfig config = new HttpProxyServerConfig();
config.setAuthenticationProvider(new BasicHttpProxyAuthenticationProvider() {
@Override
protected BasicHttpToken authenticate(String usr, String pwd) {
if ("admin".equals(usr) && "123456".equals(pwd)) {
return new BasicHttpToken(usr, pwd);
}
return null;
}
});
new HttpProxyServer()
.serverConfig(config)
.start(9999);
```- Custom
Customize authentication by implementing the `HttpProxyAuthenticationProvider` interface.
### Authentication context
After the authorization, the token returned from the verification pass can be obtained in the pipeline.
```java
HttpToken token = HttpAuthContext.getToken(clientChannel);
```## Pre-proxy support
Pre-proxy can be set,support http,socks4,socks5 protocol.
```java
new HttpProxyServer()
.proxyConfig(new ProxyConfig(ProxyType.SOCKS5, "127.0.0.1", 1085))
.start(9999);
```## Donate
If you like this project, please consider [donating](/.donate/index.md) to support the development of this project, thank you!
## Flow
SSL handshake
![SSL握手](https://raw.githubusercontent.com/monkeyWie/pic-bed/master/proxyee/20190918134332.png)HTTP communication
![HTTP通讯](https://raw.githubusercontent.com/monkeyWie/pic-bed/master/proxyee/20190918134232.png)
## How it works
- [JAVA 写 HTTP 代理服务器(一)-socket 实现](https://segmentfault.com/a/1190000011810997)
- [JAVA 写 HTTP 代理服务器(二)-netty 实现](https://segmentfault.com/a/1190000011811082)
- [JAVA 写 HTTP 代理服务器(三)-https 明文捕获](https://segmentfault.com/a/1190000011811150)## Thanks
[![intellij-idea](idea.svg)](https://www.jetbrains.com/?from=proxyee)