项目作者: aomsweet

项目描述 :
High-quality network proxy library based on Netty. Support http/socks mixed protocol, upstream proxy, request/response interception.
高级语言: Java
项目地址: git://github.com/aomsweet/caraway.git
创建时间: 2021-05-31T02:20:43Z
项目社区:https://github.com/aomsweet/caraway

开源协议:

下载


Cyber Project

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

Features

  • HTTP
  • SOCKS4/4a
  • SOCKS5
  • Username/password authentication
  • Chained Upstream proxies
  • Http interceptor
  • Rate monitor

Usage

pom.xml

  1. <dependency>
  2. <groupId>io.github.aomsweet</groupId>
  3. <artifactId>cyber-core</artifactId>
  4. <version>1.0.0.alpha1</version>
  5. </dependency>

Demo.java

  1. public class Demo {
  2. public static void main(String[] args) {
  3. new CyberServer.Builder()
  4. .withPort(2228)
  5. .build().start();
  6. }
  7. }

License

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