You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 9, 2023. It is now read-only.
Hi, I've found a bug introduced in release 3.1.1099 (3.1.1096 was ok), and still present in the latest beta. If you setup a simple proxy (without "SSL decryption"), some MS tools (Edge, MS Store, WinUpdate, etc) fail to access HTTPS resources (Edge says the certificate is invalid), while other programs (Chrome, Firefox, etc) work fine.
Create a .NET Core 3.0 console app, with the following code in the Program.cs file:
using System;
using System.Net;
using Titanium.Web.Proxy;
using Titanium.Web.Proxy.Models;
namespace ConsoleProxy
{
class Program
{
static void Main()
{
using ProxyServer ps = new ProxyServer(false, false, false);
ps.AddEndPoint(new ExplicitProxyEndPoint(IPAddress.Any, 8081, false));
ps.AddEndPoint(new ExplicitProxyEndPoint(IPAddress.IPv6Any, 8081, false));
ps.Start();
Console.WriteLine("Running, press any key to exit...");
Console.ReadKey();
ps.Stop();
}
}
}