Does anyone happen to know of a library paid or free that will allow me to send HTTP/S requests using a Socks5 proxy? I've googled without much success. I need a way to either send requests in a similar fashion to HttpWebRequest or I need a way to route local ports to go through Socks5 servers. Some guidance would be greatly appreciated. Thanks =)

link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The ProxySocket from mentalis.org is an implementation of the SOCKS4/5 CONNECT protocol.

With this class, you can connect to a remote host trough a SOCKS proxy server and optionally authenticate yourself with a username/password combination.

It is extremely easy to use because it behaves like ordinary Socket objects. Simply adjust a few properties and your application supports SOCKS proxies.

I'm not sure how to make the WebClient or HttpWebRequest classes in the .NET Framework use this class instead of the normal Socket class though.

link|improve this answer
I've tried this class by setting up a TCPListener and then using the Proxy property of HttpWebrequest to forward to the listener. From there I forward the socket through the socks server. It works for plain HTTP requests but not HTTPS which is a major problem. – FoxyGT Jul 14 '11 at 0:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.