Skip to content

bansalvks/Titanium

 
 

Repository files navigation

Titanium

A light weight http(s) proxy server written in C#

alt tag Features

  • Supports HTTPS and all features of HTTP 1.1 (except pipelining)
  • Supports relaying of WebSockets
  • Supports script injection
  • Async using HTTPWebRequest class for better performance

Usage

Refer the HTTP Proxy Server library in your project, look up Test project to learn usage.

Add reference to

  • Titanium.Web.Proxy.dll

These files also should be in your application directory

  • Ionic.Zip.dll
  • makecert.exe
  • DO_NOT_TRUST_FiddlerRoot.cer

Setup HTTP proxy:

	// listen to client request & server response events
    ProxyServer.BeforeRequest += OnRequest;
    ProxyServer.BeforeResponse += OnResponse;
	
	ProxyServer.EnableSSL = true;
	ProxyServer.SetAsSystemProxy = true;
	ProxyServer.Start();
	
	//wait here (You can use something else as a wait function, I am using this as a demo)
	Console.Read();
	
	//Unsubscribe & Quit
	ProxyServer.BeforeRequest -= OnRequest;
    ProxyServer.BeforeResponse -= OnResponse;
	ProxyServer.Stop();
	
	

Sample request and response event handlers

		
	public void OnRequest(object sender, SessionEventArgs e)
	{
		//Modify  e.ProxyRequest
	}
	
	 public void OnResponse(object sender, SessionEventArgs e)
	{
		if (e.ServerResponse.StatusCode == HttpStatusCode.OK)
		{
			if (e.ServerResponse.ContentType.Trim().ToLower().Contains("text/html"))
			{
				//Get response body
				e.GetResponseBody();
				//Modify e.ServerResponse
				e.ResponseString = "<html><head></head><body>Response is modified!</body></html>";
			}
		}
	}

Future updates

  • Expose only APIs that are safe to be consumed by developer
  • Replace makecert.exe with other certificate generation APIs (like bouncy)
  • Release nuget package
  • Support modification of web socket requests
  • Support HTTP 2.0 Once spec is ready

About

A light weight http(s) proxy server written in C#

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 99.3%
  • Batchfile 0.7%