Tagged Questions

3
votes
2answers
1k views

How to parse a raw HTTP response?

If I have a raw HTTP response as a string: HTTP/1.1 200 OK Date: Tue, 11 May 2010 07:28:30 GMT Expires: -1 Cache-Control: private, max-age=0 Content-Type: text/html; charset=UTF-8 ...
2
votes
2answers
780 views

C# Reverse PROXY (bypass NAT / FIREWALL)

right now Im searching for like 6h to get into it! My brain is done! Ok, heres the deal: I'm searching a solution, to connect to a PC behind a Router wich is running the Proxy Server to passthrough ...
2
votes
1answer
949 views

Connecting to a .NET webservice via a SOCKS5 proxy

I'm attempting to connect through a SOCKS5 proxy to a webservice. Currently, my app.config is as follows: <system.net> <defaultProxy enabled="true" > <proxy ...
1
vote
1answer
103 views

Create socks host with C# for http proxy forwarding

i want to create a proxy server or (Socks host ??) to communicate with browsers (such as firefox) to forward http proxy. i have a software that do this: bitvise tunnelier. so, i need to write an ...
1
vote
0answers
218 views

How to tunnel an SSL connection correctly between two NetworkStreams?

HttpWebRequest doesn't support SOCKS proxies, so after a long research I've determined, that the best way to add SOCKS support for WebRequest and WebClient (without reinventing the wheel, like ...
1
vote
1answer
251 views

Library For Sending HTTP/S Requests With Socks5 Proxy. C# / .NET

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 ...
1
vote
2answers
666 views

Proxy/Socks C# problem

How I can add proxy/socks4/socks5 to C# Socket. I need use it throw Socket. I don't want use WebRequest and any classes. private static Socket ConnectSocket(string server, int port) { Socket s = ...
0
votes
0answers
29 views

Record AIM with a Socks Proxy?

I need to record the AIM traffic at work for compliance reasons. After checking on the internet I have yet to find a single application that actually works. Anyone have any recommendations? Or if ...
0
votes
1answer
410 views

C# Tunnel/Bridge from Http to Socks

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 ...
0
votes
2answers
607 views

SOCKS communication using .net framework 4.0

I want to communicate with server to run my c# application and so I need to connect with server through sock communication. Is it possible using .net framework 4 ?
-1
votes
2answers
292 views

SSL without SslStream because I'd like to connect through a SOCKS5 Proxy

BACKGROUND INFORMATION: PROGRAM WRITTEN IN C# I'm working on a program right now that connects through a SOCKS5 proxy (coded from scratch. works well enough.), but I'd also like to (through that ...