Skip to content

OmarTariq612/http2socks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HTTP to SOCKSv5 Proxy

http2socks is an http proxy that relays traffic to a SOCKSv5 proxy in the right format.

It can be used for programs/devices that don't support socks 5 protocol.

Build

go build .

Usage

Usage of http2socks:
  -bind string
        bind address (default ":5555")
  -cred string
        username:password that will be used to authenticate http clients
  -socks string
        socks server address

cred is an option that can be used to provide Basic authentication for http clients.

./http2socks --bind 127.0.0.1:5050 --socks 192.168.1.10:1080
2022/09/13 18:10:19 Serving on 127.0.0.1:5050
2022/09/13 18:10:19 the provided socks server address is 192.168.1.10:1080


Now you can use 127.0.0.1:5050 as an http proxy and the traffic will be forwarded in the right format to the socks server at 192.168.1.10:1080

Notes

  • Binding to ports below 1024 requires root priviliges.
  • Basic authentication is not a secure way to protect the server as the username:password base64-encoded parameter is sent in clear text.

REF

About

An HTTP Proxy that relays traffic to a SOCKS server.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages