gerevs

Crates.iogerevs
lib.rsgerevs
version0.1.8
sourcesrc
created_at2024-07-26 16:19:54.473397
updated_at2024-08-02 11:39:42.234792
descriptionGerevs is a Rust crate for implementing general-purpose SOCKS5 proxy servers with asynchronous execution and flexible authentication methods.
homepage
repositoryhttps://github.com/itamarsch/gerevs
max_upload_size
id1316386
size85,310
Itamar Schwartz (itamarsch)

documentation

README

Gerevs: A Rust Crate for Secure SOCKS5 Proxies (RFC 1928)

Welcome to Gerevs!

Gerevs is a work-in-progress Rust crate designed to simplify the creation of secure, general-purpose SOCKS5 proxies. Whether you’re building a networked application or enhancing security, Gerevs aims to provide the tools you need with minimal hassle.

Features

  • Secure Connections: Ensure robust security for your proxy communications.
  • General Purpose: Flexible enough to suit a variety of use cases.
  • Rust Power: Leverage Rust’s performance and safety features.
  • Asynchronous Execution: Built using Tokio for high performance and efficient asynchronous operations.

SOCKS5 Commands

  • CONNECT
  • BIND
  • UDP ASSOCIATE (The proxy still doesn't support fragmentation, but I doubt it will because after scouring the internet I couldn't find client side implementations that actually bothered to implement fragmentation)

SOCKS5 Authentication

  • Username password (RFC 1929)
  • GSSAPI (RFC 1961)
  • User defined (The library allows the user of the library to define authentication methods themselves)

Note: Gerevs is designed for server-side implementation only.

What's in the Name?

The name Gerevs is derived from the Hebrew word "גרב" (gerev), which means "sock".

Getting Started

To get started with Gerevs, add it to your Cargo.toml:

[dependencies]
gerevs = "0.1.8"

Check out the Gerevs documentation for detailed usage instructions and examples.

Contributions

We welcome contributions! Check out our GitHub repository to get involved.

Join us in making proxy development easier and more secure with Rust! 🚀

Commit count: 0

cargo fmt