Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 679 Bytes

README.md

File metadata and controls

44 lines (33 loc) · 679 Bytes

SOCKS5 to HTTP proxy

Tool to convert a SOCKS5 proxy to HTTP

Installation

Download:

git clone https://github.com/reneManqueros/socks-to-http

Compile:

cd socks-to-http && go build .

Usage

Basic usage:

./sockstohttp run

Parameters

Custom socks address - Default ":8081"

./sockstohttp run socks=127.0.0.1:8080

Custom listen address - Default ":8083":

./sockstohttp run listen=127.0.0.1:9090

Custom timeout (seconds) - Default "10":

./sockstohttp run timeout=20

Parameters can be combined:

./sockstohttp run timeout=20 listen=127.0.0.1:9090 socks=127.0.0.1:8080