An open API service indexing awesome lists of open source software.

https://github.com/rawvoid/vine-project

High-performance proxy library based on Netty. Support socks/http mixed protocol, upstream proxy, MITM, intercept and tamper with https traffic.
https://github.com/rawvoid/vine-project

http http-tunnel mitm proxy-server socks4a socks5 upstream-proxy

Last synced: 18 days ago
JSON representation

High-performance proxy library based on Netty. Support socks/http mixed protocol, upstream proxy, MITM, intercept and tamper with https traffic.

Awesome Lists containing this project

README

          

# Cyber Project

High-performance proxy library based on Netty. Support socks/http mixed protocol, upstream proxy, MITM, intercept and tamper with https traffic.

## Features

- [x] HTTP
- [x] SOCKS4/4a
- [x] SOCKS5
- [x] Username/password authentication
- [x] Chained Upstream proxies
- [x] Http interceptor
- [ ] Rate monitor

## Usage

pom.xml
```xml

io.github.aomsweet
cyber-core
1.0.0.alpha1

```

Demo.java
```java
public class Demo {

public static void main(String[] args) {
new CyberServer.Builder()
.withPort(2228)
.build().start();
}

}
```

## License

This project is licensed under the Apache License(Version 2.0) - see the [LICENSE](/LICENSE) file for details.