titanium-web-proxy
titanium-web-proxy copied to clipboard
A cross-platform asynchronous HTTP(S) proxy server in C#.
In my environment, I have an upstream proxy that requires basic authentication and I need to change the password on an irregular basis. So, I have not specified a username...
Hi, I have a .pfx file along with its password obviously... I want to use this while decrypting SSL. This is what I do: ``` var proxyServer = new ProxyServer("path/to/.pfx_file",...
Is there any option to use another gateway for the proxy server without using the default gateway in windows thanks
App used: BasicClient from this Github. I am having problems with persistent connections that remain inactive for more than a minute. When the web client makes a new request for...
I'm trying to block images, however, it doesn't work I am using **BeforeResponse** event Tried this: ``` if (e.HttpClient.Response.ContentType.Contains("image")) { e.SetResponseBodyString(""); } ``` and this ``` if (e.HttpClient.Response.ContentType.Contains("image")) { byte[]...
@honfika Hi, Application scenario: use Titanium-web-proxy to inject content into the login page of a website, but the website uses a cache, Titanium-web-proxy cannot get the html of the login...
Hello. I wanted to return a custom response in case the requested host does not exist or host is down. I am using ExplicitEndpoint and tried to produce a response...
Hello Does the Titanium-Web-Proxy proxy server now have cached capabilities? In order to speed up access, I need to implement caching capabilities on the proxy server. If I don't have...
Because when proxy starts, we will set the **RootCertificate**, this will delete the **crts** directory in the disk. So we either use the newly created certificate (and save it in...
Firstly thank you for this masterpiece ! And to the problem. Lately I have tried to properly handle Titanium exceptions by using ``` ProxyServer.ExceptionFunc ``` and if this exception occured...