Click here to Skip to main content
Click here to Skip to main content

Implementing a Multithreaded HTTP/HTTPS Debugging Proxy Server in C#

By , 3 Feb 2011
 

Introduction

This article will show you how to implement a multithreaded HTTP proxy server in C# with a non-standard proxy server feature of terminating and then proxying HTTPS traffic. I've added a simple caching mechanism, and have simplified the code by ignoring http/1.1 requests for keeping connections alive, etc.

Disclaimer: Understand that this code is for debugging and testing purposes only. The author does not intend for this code or the executable to be used in any way that may compromise someone's sensitive information. Do not use this server in any environment which has users that are unaware of its use. By using this code or the executable found in this article, you are taking responsibility for the data which may be collected through its use.

Background

If you are familiar with fiddler, then you already know how this proxy server works. It essentially performs a "man-in-the-middle" on the HTTP client to dump and debug HTTP traffic. The System.Net.Security.SslStream class is utilized to handle all the heavy lifting.

Using the Code

The most important part about this code is that when the client asks for a CONNECT, instead of just passing TCP traffic, we're going to handle an SSL handshake and establish an SSL session and receive a request from the client. In the mean time, we'll send the same request to the destination HTTPS server.

First, let's look at creating a server that can handle multiple concurrent TCP connections. We'll use the System.Threading.Thread object to start listening for connections in a separate thread. This thread's job will be to listen for incoming connections, and then spawn a new thread to handle processing, thus allowing the listening thread to continue listening for new connections without blocking while one client is processed.

public sealed class ProxyServer
{
   private TcpListener _listener;
   private Thread _listenerThread;

   public void Start()
   {
      _listener = new TcpListener(IPAddress.Loopback, 8888);
      _listenerThread = new Thread(new ParameterizedThreadStart(Listen));
      _listenerThread.Start(_listener);
   }
        
   public void Stop()
   {
      //stop listening for incoming connections
      _listener.Stop();
      //wait for server to finish processing current connections...
      _listenerThread.Abort();
      _listenerThread.Join();
   }

   private static void Listen(Object obj)
   {
      TcpListener listener = (TcpListener)obj;
      try
      {
         while (true)
         {
            TcpClient client = listener.AcceptTcpClient();
            while (!ThreadPool.QueueUserWorkItem
		(new WaitCallback(ProxyServer.ProcessClient), client)) ;
         }
      }
      catch (ThreadAbortException) { }
      catch (SocketException) { }
   }

   private static void ProcessClient(Object obj)
   {
      TcpClient client = (TcpClient)obj;
      try
      {
         //do your processing here
      }
      catch(Exception ex)
      {
         //handle exception
      }
      finally
      {
         client.Close();
      }
   }
}

And that's the beginning of the code to handle concurrent TCP clients in a multithreaded manner. Nothing really special there. The interesting bit is when we use SslStream to act as an HTTPS server and "trick" the client into believing it's talking to the destination server. Note that the browser should not actually be tricked because of the SSL certificate chain, but depending on their browser, it may or may not be apparent that the server's identity is in question.

Now let's take a look at the actual processing of the SSL request. Assume that we are somewhere inside the try block of the ProcessClient method shown above.

//read the first line HTTP command
Stream clientStream = client.GetStream();
StreamReader clientStreamReader = new StreamReader(clientStream);
String httpCmd = clientStreamReader.ReadLine();

//break up the line into three components
String[] splitBuffer = httpCmd.Split(spaceSplit, 3);
String method = splitBuffer[0];
String remoteUri = splitBuffer[1];
Version version = new Version(1, 0); //force everything to HTTP/1.0

//this will be the web request issued on behalf of the client
HttpWebRequest webReq;

if (method == "CONNECT")
{
   //Browser wants to create a secure tunnel
   //instead = we are going to perform a man in the middle
   //the user's browser should warn them of the certification errors however.
   //Please note: THIS IS ONLY FOR TESTING PURPOSES - 
   //you are responsible for the use of this code
   //this is the URI we'll request on behalf of the client
   remoteUri = "https://" + splitBuffer[1];
   //read and ignore headers
   while (!String.IsNullOrEmpty(clientStreamReader.ReadLine())) ;

   //tell the client that a tunnel has been established
   StreamWriter connectStreamWriter = new StreamWriter(clientStream);
   connectStreamWriter.WriteLine("HTTP/1.0 200 Connection established");
   connectStreamWriter.WriteLine
	(String.Format("Timestamp: {0}", DateTime.Now.ToString()));
   connectStreamWriter.WriteLine("Proxy-agent: matt-dot-net");
   connectStreamWriter.WriteLine();
   connectStreamWriter.Flush();

   //now-create an https "server"
   sslStream = new SslStream(clientStream, false);
   sslStream.AuthenticateAsServer(_certificate, 
	false, SslProtocols.Tls | SslProtocols.Ssl3 | SslProtocols.Ssl2, true);

   //HTTPS server created - we can now decrypt the client's traffic
   //.... 
}

Points of Interest

You can see that I have an X509Certificate2 _certificate defined elsewhere in the code. To get a certificate for this, you need to use a tool like makecert.exe to create a self-signed certificate. I found makecert.exe in the Windows SDK and it also comes with Fiddler. I have included a certificate file in the source files to allow the server to run, but because it does not include the private key, to actually handle SSL traffic, You will need to run makecert.exe

Here is the syntax I used for makecert.exe:

makecert.exe cert.cer -a sha1 -n "CN=matt-dot-net" -sr LocalMachine -ss My -sky signature -pe -len 2048

One thing to note is that on your HttpWebRequest object, you will need to set the Proxy property to null if you are using Windows internet options to specify using your proxy server. This is because your HttpWebRequest will default to the Windows internet settings and you'll have a proxy server that is trying to use itself as a proxy server!

Another interesting and frustrating hang-up was the handling of cookies. When I thought that I was processing requests/responses perfectly, I found that I could not maintain state with any websites because cookies were not properly being sent by the client. I determined (from using fiddler and firefox live HTTP headers) that cookies needed to be set individually. The server was returning several cookies in one Set-Cookie header, but I needed to parse them out and return an individual Set-Cookie header for each one. I haven't researched to find out why this is, or what is the proper handling of cookies in HTTP, but all I can assume was that when a browser is set to use a proxy server, it expects the proxy server to process cookies into individual Set-Cookie headers and if not configured to use a proxy, the browser does this itself.

History

I threw together this code on a Sunday afternoon, so I expect it to have errors and problems. Also, I make no claim that this is properly handling errors, cleaning up objects, or is in any way the best way to do anything.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)

About the Author

matt-dot-net
Software Developer (Senior)
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionWhy Image are not upload?memberGAJERA13hrs 26mins ago 
QuestionHow to use HTTP/1.1 ?memberGAJERA3 May '13 - 22:55 
QuestionSave encoded certificate to store failed => 0x5 (5)memberpara para20 Mar '13 - 12:15 
AnswerRe: Save encoded certificate to store failed => 0x5 (5)memberpara para21 Mar '13 - 11:33 
QuestionCode does not work for HTTPSmemberaditya_bokade5 Mar '13 - 0:13 
QuestionMultiple cookies in a responsememberNir Asis31 Jan '13 - 5:14 
QuestionProblem with HttpsmemberNnamani Uchenna19 Nov '12 - 22:23 
AnswerRe: Problem with Httpsmembermatt-dot-net20 Nov '12 - 8:37 
QuestionDose not play viseomemberbr68br687 Nov '12 - 0:30 
AnswerRe: Dose not play viseomemberHaggis7727 Apr '13 - 10:44 
BugHangs while browsingmemberajhvdb13 Feb '12 - 0:13 
QuestionMy vote of 5 [modified]memberTimur Akhmedov25 Jan '12 - 7:53 
QuestionTroubles with HTTPSmemberMember 469052012 Dec '11 - 17:30 
AnswerDid you find the solution?memberaditya_bokade6 Mar '13 - 3:43 
Questioncan you please tell me the command line how did you create the certificate?memberXinyiChen9 Nov '11 - 22:09 
I tried many times to use makecert.exe as below command line:
 
makecert -a sha1 -n "CN=https" -b 01/01/2011 -e 01/01/2088 https.cert
 
the certificate was created successfully, but when i load it into your program via
_certificate = new X509Certificate2(certFilePath);
, it threw exception, why?
AnswerRe: can you please tell me the command line how did you create the certificate?membermatt-dot-net10 Nov '11 - 2:36 
GeneralRe: can you please tell me the command line how did you create the certificate?memberXinyiChen10 Nov '11 - 14:10 
AnswerRe: can you please tell me the command line how did you create the certificate?memberXinyiChen11 Nov '11 - 3:35 
GeneralRe: can you please tell me the command line how did you create the certificate?membermatt-dot-net14 Nov '11 - 4:05 
Generalthis is greatmemberfisura20 Oct '11 - 18:27 
QuestionHTTPS doesn't workmemberrtnylw18 Aug '11 - 3:38 
GeneralMy vote of 5memberalexjanjic9 Jul '11 - 6:12 
QuestionWhich Options do I need to use to make the certificate?memberalexjanjic9 Jul '11 - 6:07 
GeneralMy vote of 5memberKushan Ratnayake8 Jul '11 - 20:32 
GeneralMy vote of 4memberKPetrosyan8 Jun '11 - 22:43 
Generalfacebook https pages are brokenmemberKPetrosyan8 Jun '11 - 22:43 
Generalcertificatemembermushonaaa9 May '11 - 1:21 
GeneralRe: certificatemembermatt-dot-net11 May '11 - 7:15 
GeneralAuthentication ExceptionmemberMark Woan9 Feb '11 - 2:58 
GeneralRe: Authentication Exceptionmembermatt-dot-net14 Feb '11 - 4:10 
GeneralMy vote of 5memberMartin Thwaites4 Feb '11 - 13:10 
GeneralArticle Updatemembermatt-dot-net1 Feb '11 - 7:57 
GeneralProblems with POST datamemberMartin Thwaites1 Feb '11 - 5:49 
GeneralRe: Problems with POST datamembermatt-dot-net1 Feb '11 - 6:34 
GeneralRe: Problems with POST datamemberMartin Thwaites4 Feb '11 - 13:09 
GeneralError on ssl web sites.memberjlandrian26 Jul '10 - 13:17 
GeneralRe: Error on ssl web sites.membermatt-dot-net26 Jul '10 - 14:42 
GeneralMy vote of 5memberMember 432084420 Jul '10 - 22:01 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 3 Feb 2011
Article Copyright 2010 by matt-dot-net
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid