当前位置: 首页>>代码示例>>C#>>正文


C# Session.HostnameIs方法代码示例

本文整理汇总了C#中Fiddler.Session.HostnameIs方法的典型用法代码示例。如果您正苦于以下问题:C# Session.HostnameIs方法的具体用法?C# Session.HostnameIs怎么用?C# Session.HostnameIs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Fiddler.Session的用法示例。


在下文中一共展示了Session.HostnameIs方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: InterceptRequest

        private void InterceptRequest(Session session)
        {
            if (!session.hostname.EndsWith(s3Configuration.ServiceUrl))
              {
            return;
              }

              if (session.HTTPMethodIs("CONNECT"))
              {
            session.oFlags["x-replywithtunnel"] = "fake tunnel";
            return;
              }

              string bucket = string.Empty;
              if (!session.HostnameIs(s3Configuration.ServiceUrl))
              {
            string virtualHostedPath = session.hostname.Replace("." + s3Configuration.ServiceUrl, string.Empty);
            bucket = "/" + virtualHostedPath;
              }

              if(session.isHTTPS)
              {
            session.fullUrl = session.fullUrl.Replace("https", "http");
              }
              session.host = string.Format("127.0.0.1:{0}", s3Configuration.HostPort);
              session.PathAndQuery = string.Format("{0}{1}", bucket, session.PathAndQuery);
        }
开发者ID:nrazon,项目名称:S3Emulator,代码行数:27,代码来源:S3Server.cs

示例2: AutoTamperRequestBefore

        public void AutoTamperRequestBefore(Session oSession)
        {
            // http:443 프로토콜 체크
            if (PLinkCore.PLink.host.isHttpsFilter) { checkHttpsFilter(oSession); }

            // api 모드 적용
            if (oSession.HostnameIs("api.plink")) {
                runApiMode(oSession);
                return;
            }

            // PLink host 변조 적용
            if (PLinkCore.PLink.host.StartState) {
                checkHost(oSession);
            }
        }
开发者ID:easylogic,项目名称:plink,代码行数:16,代码来源:PLinkAddOn.cs

示例3: AutoTamperRequestBefore

        public void AutoTamperRequestBefore(Session session)
        {
            if (Settings.enabled && session.HostnameIs(reportHost) && !session.isFTP)
            {
                // TODO: We should offer an option to hide the reports from Fiddler; change "ui-strikeout" to "ui-hide" in the next line
                session["ui-strikeout"] = "CSPReportGenerator";

                if (!session.HTTPMethodIs("CONNECT"))
                {
                    session.utilCreateResponseAndBypassServer();
                    session.oResponse.headers.Add("Content-Type", "text/html");
                    session.ResponseBody = Encoding.UTF8.GetBytes("<!doctype html><HTML><BODY><H1>Report received.</H1></BODY></HTML>");

                    ProcessCSPReport(session);
                }
                else
                {
                    session["x-replywithtunnel"] = "CSPReportGenerator";
                }
            }
        }
开发者ID:modulexcite,项目名称:CSP-Fiddler-Extension,代码行数:21,代码来源:FiddlerExtension.cs

示例4: OnFiddlerSessionComplete

        void OnFiddlerSessionComplete(Session oSession)
        {
            if (configuration == null || !configuration.HostsToIntercept.Any(host => oSession.HostnameIs(host)))
            {
                return;
            }

            lock (sessionsLock)
            {
                sessions.Add(oSession);
            }

            var session = new FiddlerHttpSession(oSession);
            OnSessionComplete?.Invoke(this, new HttpSessionCompleteEventArgs(session));
        }
开发者ID:yaakov-h,项目名称:TeamRocketProxy,代码行数:15,代码来源:FiddlerHttpProxy.cs

示例5: AutoTamperRequestBefore

        public void AutoTamperRequestBefore(Session oSession)
        {
            // 캐쉬 적용하지 않기
            if (disabledCache){ SetDiabledCache(oSession); }

            // http:443 프로토콜 체크
            if (PLinkCore.PLink.host.isHttpsFilter) { checkHttpsFilter(oSession); }

            log(getSessionString(oSession));

            // api 모드 적용
            if (oSession.HostnameIs("api.plink")) {
                runApiMode(oSession);
                return;
            }

            // PLink host 변조 적용
            if (PLinkCore.PLink.host.StartState) {
                checkHost(oSession);
            }

            log(oSession.fullUrl);
        }
开发者ID:easylogic,项目名称:plink,代码行数:23,代码来源:PLink.cs


注:本文中的Fiddler.Session.HostnameIs方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。