High-performance proxy library based on Netty. Support socks/http mixed protocol, upstream proxy, MITM, intercept and tamper with https traffic.
- HTTP
- SOCKS4/4a
- SOCKS5
- Username/password authentication
- Chained Upstream proxies
- Http interceptor
- Rate monitor
pom.xml
<dependency>
<groupId>io.github.aomsweet</groupId>
<artifactId>cyber-core</artifactId>
<version>1.0.0.alpha1</version>
</dependency>
Demo.java
public class Demo {
public static void main(String[] args) {
new CyberServer.Builder()
.withPort(2228)
.build().start();
}
}
This project is licensed under the Apache License(Version 2.0) - see the LICENSE file for details.