Click here to Skip to main content
15,880,796 members
Articles / Programming Languages / C#
Article

C# class for connecting via a SOCKS5 Proxy Server

Rate me:
Please Sign up or sign in to vote.
3.09/5 (18 votes)
26 Jan 2004 343.9K   6.1K   45   10
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

C#
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


Written By
Web Developer
Pakistan Pakistan
I started programming in 1996 with Lotus 123 (macro's). From that day programming became my life partner.

Currently I live in Rawalpindi, Pakistan.


Comments and Discussions

 
QuestionAuthorization Pin
Member 1431662623-Apr-19 1:16
Member 1431662623-Apr-19 1:16 
QuestionRegarding license terms and conditions for the SOCKS5 proxy implementation. Pin
Member 1341981426-Sep-17 3:14
Member 1341981426-Sep-17 3:14 
Question不能用。。 Pin
songgongpu26-Sep-13 22:59
songgongpu26-Sep-13 22:59 
QuestionProxy Access with authentication Pin
paras d. patel1-May-13 20:09
paras d. patel1-May-13 20:09 
QuestionUDP Support Pin
seer_tenedos229-Nov-11 15:07
seer_tenedos229-Nov-11 15:07 
GeneralIt does't work Pin
popsickle12-Oct-09 15:14
popsickle12-Oct-09 15:14 
Generalbug in his proxyserver Pin
edvo13-Feb-06 8:53
edvo13-Feb-06 8:53 
GeneralRe: bug in his proxyserver Pin
Member 119906661-Dec-15 2:38
Member 119906661-Dec-15 2:38 
GeneralUDP Proxy Pin
keshavcn9-Sep-05 21:13
keshavcn9-Sep-05 21:13 
QuestionHow to make http proxy connection Pin
sangram120-Jul-05 4:20
sangram120-Jul-05 4:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.