- 23 Feb, 2018 7 commits
-
-
mohammadlachgar authored
-
mohammadlachgar authored
-
mohammadlachgar authored
Like : *overwritePFXfile *passwordpfx *namePFXfile *saveFakeCertificates
-
mohammadlachgar authored
Changed the naming conventions Changed some properties to "Auto-Implemented Properties" Add some properties
-
mohammadlachgar authored
-
mohammadlachgar authored
-
mohammadlachgar authored
-
- 22 Feb, 2018 5 commits
-
-
mohammadlachgar authored
Now you can Change path rootCert.pfx ,name and password
-
mohammadlachgar authored
//Methode 1 //------------ proxyServer = new ProxyServer(); //proxyServer.Password_rootCert = "PfxPassword"; proxyServer.TrustRootCertificate = true; ..... ..... proxyServer.Start(); //The provided root certificate will be stored in proxy dll directory //===================== //Methode 2 //---------- proxyServer = new ProxyServer(); proxyServer.TrustRootCertificate = true; //Will not (load or create) certificate Before call function CreateTrustedRootCertificate proxyServer.CertificateManager.SetInfo_LoadRootCertificate(@"C:\NameFolder\rootCert.pfx", "PfxPassword"); ..... ..... proxyServer.Start(); //The provided root certificate will be stored in "C:\NameFolder\rootCert.pfx" //===================== //Methode 3 //------------ proxyServer = new ProxyServer(); proxyServer.TrustRootCertificate = true; //note : load now "C:\NameFolder\rootCert.pfx" (if existed) proxyServer.CertificateManager.LoadRootCertificate(@"C:\NameFolder\rootCert.pfx", "PfxPassword"); ..... ..... proxyServer.Start(); //if doesn't exist file, or password is incorect and (overwriteRootCert=true) ====> create new pfx file //The provided root certificate will be stored in "C:\NameFolder\rootCert.pfx"
-
mohammadlachgar authored
change if (ProxyEndPoints.Any(x => (x as ExplicitProxyEndPoint).GenericCertificate == null)) to if (ProxyEndPoints.OfType<ExplicitProxyEndPoint>().Any(x => x.GenericCertificate == null)) and add throw new Exception(ex.Message);
-
mohammadlachgar authored
change @"^" + "CN".ToLower() + @"\s*=\s*" to ^CN\s*=\s*
-
mohammadlachgar authored
**Save all fake certificates in folder "crts"(will be save in proxy dll directory) for can load the certificate and not make new certificate every time . **Manually load a RootCertificate
-
- 11 Feb, 2018 1 commit
-
-
Honfika authored
-
- 10 Feb, 2018 3 commits
- 06 Feb, 2018 1 commit
-
-
Honfika authored
-
- 16 Jan, 2018 1 commit
-
-
Honfika authored
-
- 15 Jan, 2018 1 commit
-
-
honfika authored
Update IsSystemHttpProxy condition
-
- 10 Jan, 2018 1 commit
-
-
Cosmin Gramada authored
-
- 05 Jan, 2018 3 commits
- 03 Jan, 2018 2 commits
-
-
Jehonathan Thomas authored
-
Jehonathan Thomas authored
-
- 02 Jan, 2018 6 commits
-
-
Jehonathan Thomas authored
Add a Gitter chat badge to README.md
-
The Gitter Badger authored
-
Honfika authored
-
Honfika authored
-
Honfika authored
Exclude (for example) Google cloud messaging streams. It is a https tunnel, but the content is not http
-
Honfika authored
-
- 01 Jan, 2018 4 commits
- 31 Dec, 2017 5 commits