Skip to content

An implementation of Proxychains in Rust using API hooking techniques for dynamic proxy routing

Notifications You must be signed in to change notification settings

alifarrokh/proxychains

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Proxychains

Asynchronous Proxychains implementation using API Hooking written in Rust

Currently Supported Proxies: SOCKS5

Proxychains Modes: Random, Strict, Dynamic

Note: The project is yet under development.

Usage

  1. Clone the project
$ git clone https://github.com/alifarrokh/proxychains.git
  1. Build
$ cd proxychains
$ cargo build --release
  1. Create config.toml (config.sample.toml is included)
mode = "Strict"
chain_len = 0

[[proxies]]
socket_addr = "127.0.0.1:1080"

[[proxies]]
socket_addr = "127.0.0.1:1081"
auth = ["username", "password"]
  1. Run your app with LD_PRELOAD
$ LD_PRELOAD=path/to/proxychains/target/release/libproxychains.so yourapp --config "path/to/config.toml"

About

An implementation of Proxychains in Rust using API hooking techniques for dynamic proxy routing

Topics

Resources

Stars

Watchers

Forks

Languages