Example #1
0
 private void MyEnableSwitch_IsHideSelfSession_OnChangeEnable(object sender, MyEnableSwitch.ChangeEnableEventArgs e)
 {
     modifcSettingInfo.IsHideSelfSession = e.IsEnable;
 }
Example #2
0
 void myEnableSwitch_IsEnableHttpsService_OnChangeEnable(object sender, MyEnableSwitch.ChangeEnableEventArgs e)
 {
     if (e.IsEnable)
     {
         if (!MyGlobalHelper.IsAdministrator())
         {
             MessageBox.Show("Enable http sevice need administrator rights \r\nPlease use administrator privileges to open the application", "Stop", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
             myEnableSwitch_IsEnableHttpsService.IsEnable = false;
             return;
         }
         bool isAffirm     = false;
         int  listenerPort = 443;
         if (FreeHttp.WebService.HttpServer.MySocketHelper.IsPortInTcpListening(listenerPort))
         {
             listenerPort = 9990;
             while (FreeHttp.WebService.HttpServer.MySocketHelper.IsPortInTcpListening(listenerPort))
             {
                 listenerPort++;
                 if (listenerPort == 65537)
                 {
                     MessageBox.Show("can not find leisure port from 9990 to 65536", "Stop", MessageBoxButtons.OK, MessageBoxIcon.Stop);
                     myEnableSwitch_IsEnableHttpsService.IsEnable = false;
                     return;
                 }
             }
         }
         string   listenerPrefixesStr = string.Format(@"https://*:{0}/", listenerPort);
         SetVaule f = new SetVaule("Set listener prefixes", "you can set listener prefixes for your http service,like https://*:443/", listenerPrefixesStr, new Func <string, string>((string checkValue) => { return(checkValue.StartsWith("http") && checkValue.EndsWith("/")?null:""); }));
         f.OnSetValue += new EventHandler <SetVaule.SetVauleEventArgs>((obj, tag) => { listenerPrefixesStr = tag.SetValue; isAffirm = true; });
         f.ShowDialog();
         if (!isAffirm)
         {
             myEnableSwitch_IsEnableHttpsService.IsEnable = false;
             return;
         }
         int portIndex = listenerPrefixesStr.LastIndexOf(":");
         if (!(portIndex > 0 && listenerPrefixesStr.EndsWith("/") && int.TryParse(listenerPrefixesStr.Substring(portIndex + 1, listenerPrefixesStr.Length - portIndex - 2), out listenerPort)))
         {
             MessageBox.Show("your listener prefixes is illegality", "Stop", MessageBoxButtons.OK, MessageBoxIcon.Stop);
             myEnableSwitch_IsEnableHttpsService.IsEnable = false;
             return;
         }
         if (Fiddler.CertMaker.GetRootCertificate() == null)
         {
             MessageBox.Show("can not get Fiddler RootCertificate", "Stop", MessageBoxButtons.OK, MessageBoxIcon.Stop);
             myEnableSwitch_IsEnableHttpsService.IsEnable = false;
             return;
         }
         else
         {
             if (FreeHttp.WebService.HttpServer.MySocketHelper.IsPortInTcpListening(listenerPort))
             {
                 MessageBox.Show(string.Format("this port {0} is in listening with other process", listenerPort), "Stop", MessageBoxButtons.OK, MessageBoxIcon.Stop);
                 myEnableSwitch_IsEnableHttpsService.IsEnable = false;
                 return;
             }
             try
             {
                 FreeHttp.WebService.HttpServer.CertificatesHelper.AddCertificateToX509Store(Fiddler.CertMaker.GetRootCertificate());
                 FreeHttp.WebService.HttpServer.CertificatesHelper.BindingCertificate(Fiddler.CertMaker.GetRootCertificate(), listenerPort);
             }
             catch (Exception ex)
             {
                 MessageBox.Show(string.Format("fail to BindingCertificate with {0}", ex.Message), "Stop", MessageBoxButtons.OK, MessageBoxIcon.Stop);
                 myEnableSwitch_IsEnableHttpsService.IsEnable = false;
                 return;
             }
         }
         try
         {
             MyGlobalHelper.myHttpListener.Start(listenerPrefixesStr);
             MyGlobalHelper.PutGlobalMessage(this, new MyGlobalHelper.GlobalMessageEventArgs(false, string.Format("add listening for [{0}]", listenerPrefixesStr)));
         }
         catch (Exception ex)
         {
             MessageBox.Show(string.Format("fail to Start HttpListener with {0}", ex.Message), "Stop", MessageBoxButtons.OK, MessageBoxIcon.Stop);
             MyGlobalHelper.myHttpListener.Stop();
             myEnableSwitch_IsEnableHttpsService.IsEnable = false;
             return;
         }
     }
     else
     {
         MyGlobalHelper.myHttpListener.Stop();
     }
 }
Example #3
0
 private void MyEnableSwitch_IsSyncTamperRule_OnChangeEnable(object sender, MyEnableSwitch.ChangeEnableEventArgs e)
 {
     modifcSettingInfo.IsSyncTamperRule = e.IsEnable;
 }
Example #4
0
 void myEnableSwitch_IsOnlyMatchFistTamperRule_OnChangeEable(object sender, MyEnableSwitch.ChangeEnableEventArgs e)
 {
     modifcSettingInfo.IsOnlyMatchFirstTamperRule = e.IsEnable;
 }
Example #5
0
 void myEnableSwitch_IsDefaultEnableRule_OnChangeEable(object sender, MyEnableSwitch.ChangeEnableEventArgs e)
 {
     modifcSettingInfo.IsSkipUiHide = e.IsEnable;
 }
Example #6
0
 void myEnableSwitch_IsConnectTunnels_OnChangeEable(object sender, MyEnableSwitch.ChangeEnableEventArgs e)
 {
     modifcSettingInfo.IsSkipConnectTunnels = e.IsEnable;
 }
Example #7
0
 void myEnableSwitch_IsSkipTlsHandshake_OnChangeEable(object sender, MyEnableSwitch.ChangeEnableEventArgs e)
 {
     modifcSettingInfo.IsSkipTlsHandshake = e.IsEnable;
 }