I am trying to use Tor and instead of running privoxy etc client, I want to do it in my c# program ( so no privoxy GUIs). Tor only supports SOCKS right now , so I need a way to send Http Requests to this SOCKS TOR server ( either directly or via a http proxy ).

My program code ---WebProxy ( Http 127.0.0.1:2000 ) --- > Tor (SOCKS 127.0.0.1:5000)-->WebSite and back

I looked at starksoft, componentspace etc libraries but they all only provide developing clients of these protocols.

SO How can I write kind of a tunnel/bridge so when I send http ( no https for now ) requests and receive responses ( either using webclient or httpwebrequest etc classes.

I hope the explanation is clear if not please dont

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

It seems that this in combination with Chilkat Socket (commercial) provides what you are asking for...

Another option seems to be mentalis (comes as C# source, license not clear ?)

link|improve this answer
I didnot understand it. This tells how you can create a SOCKS proxy. But in my case TOR is already a SOCKS server. – Jakkamma Aug 24 '11 at 22:31
you wrote that the libraries you checked all only supported writing a client... thus I thought you want to write a server/proxy... if that is not the case - what exactly is the question ? – Yahia Aug 24 '11 at 22:33
I want to write a small privoxy kind of Code in my app ( privoxy is a UI based app that works as a Http Web request forwarder to send Http requests to TOR and back ). I want to use WebClient, HttpWebRequest classes in C# ( or provide HttpProxy configuration in IE/FireFox/Chrome etc browsers ) and write some code which acts as a forwarder of webrequests to TOR ( running on 127.0.0.1:someport ) and get responses back. Actually you are correct that I may need to write a small HttpServer in my code, but will wait for anyone elses answers to avoid that. – Jakkamma Aug 24 '11 at 22:37
let me see if I understand that: you want to write some sort of privoxy (which technically speaking is a server) which forwards http requests (from where?) and when it receives a response must forward that to where the request came from, right ? – Yahia Aug 24 '11 at 22:50
Myprogram(request google.com) to Httpserver on my machine on port1 httpserver forwards to TOR server-SOCKS TOR sends to google.com and all the way back MyProgram-->127.0.0.1:1000 (HttpServer I write ) ------> TOR SOCKS server runing on my machine -----------> to google.com <-------------- all the way back – Jakkamma Aug 24 '11 at 23:08
show 9 more comments
feedback

Your Answer

 
or
required, but never shown

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