Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

C# class for connecting via a SOCKS5 Proxy Server

0.00/5 (No votes)
26 Jan 2004 4  
C# class for connecting via a SOCKS5 Proxy Server

Introduction

The download contains a C# source file that defines a SocksProxy class. This class can be used by the hosts, which are behind a firewall to connect to the outside world.

Description

When a TCP-based client wishes to establish a connection to an object that is reachable only via a firewall and that firewall speaks SOCKS5 protocol, this class can used on the client side to reach the object via firewall. The SOCKS service is conventionally located on TCP port 1080.

This class provides only a single static method named ConnectToSocks5Proxy, which accepts required arguments and returns a socket connected to the destination endpoint. If something wrong happens, it throws a ConnectionException. This version only supports "connect" command. "Bind" and "UDP" is not supported in this version.

For details about SOCKS5 RFC visit: http://www.faqs.org/rfcs/rfc1928.html

Client usage

Socket client;
client = LMKR.SocksProxy.ConnectToSocks5Proxy(
  "172.16.64.145",1080,"www.microsoft.com",
  80,"U$er","Pa$$word!");
string strGet = "GET //\r\n";
s.Send(System.Text.Encoding.ASCII.GetBytes(strGet));

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here