Skip to content

Latest commit

 

History

History
53 lines (32 loc) · 1023 Bytes

README.md

File metadata and controls

53 lines (32 loc) · 1023 Bytes

Socks5-Proxy

A minimal SOCKS5 proxy written in C.

Build

We use CMake to build this project.

mkdir -p build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j

If you don't have CMake installed, you could build it with GCC.

gcc proxypass.c -o proxy -pthread -O3

Run

Run a SOCKS5 proxy on port 1080.

./proxy -p 1080

also you can add username and password your proxy server with:

./proxy -p 1080 --username test --password yourpassword

Test it with curl.

curl --socks5 127.0.0.1:1080 https://www.baidu.com

You may also set the proxy in your browser as SOCKS5 on 127.0.0.1:1080, and start browsing websites.

For more information, run ./proxy -h for help.

Использование в (Pterodactyl)

Install Egg from here

Add Egg in your panel (how?)

Enjoy!