3

I have am application for Windows which only supports HTTP proxies (no SOCKS support).

Because I already have some good SOCKS proxy lists, I was wondering: Is there some HTTP proxy server for Windows OS, that could "forward" (translate?) connections to SOCKS proxies?

So the connection would look like this:

App → local HTTP proxy (as "translator" to SOCKS proxies) → SOCKS proxy

Is it possible? Is there such software?

slhck
  • 235,242
gib
  • 133

1 Answers1

4

You can use Delegate as a local http-proxy server, it also supports forwarding to SOCKS proxies.

the usage would be something like :

%delegate -P8080 SERVER=http SOCKS=destsocksaddr:port

(running http proxy on local port 8080)

sos00
  • 156
  • 1