fiddler: how to disable overwrite Header Host

前端 未结 4 1402
隐瞒了意图╮
隐瞒了意图╮ 2020-12-16 18:52

When using Fiddler, it pops up an alert dialog.

Fiddler has detected a protocol violation in session #14.

The Request\'s Host header did not match the URL\'         


        
相关标签:
4条回答
  • 2020-12-16 19:00

    You can do this with rules.

    Go into Customize rules, and find the function: OnBeforeRequest(oSession: Session)

    Then add the following as the last line of that function:

    if (oSession.HostnameIs("proxy.music.pp.com")) { oSession.host = "119.147.22.41"; }
    
    0 讨论(0)
  • 2020-12-16 19:01

    From my book:

    Swap the Host Header

    When Fiddler gets a request whose URL doesn’t match its Host header, the original Host value is stored in the session flag X-Original-Host and then the Host value is replaced with the host parsed from the URL. The following script, placed inside your FiddlerScript's BeforeRequest function, reverses behavior by routing the request to the host specified by the original Host header.

    if (oSession.BitFlags & SessionFlags.ProtocolViolationInRequest) 
    {
      var sOverride = oSession["X-Original-Host"];
      if (!String.IsNullOrEmpty(sOverride)) 
      {
        oSession["X-overrideHost"] = sOverride;
        oSession["ui-backcolor"] = "yellow";
    
        // Be sure to bypass the gateway, otherwise overrideHost doesn't work
        oSession.bypassGateway = true;
      }
    }
    
    0 讨论(0)
  • 2020-12-16 19:01

    I didn't understand what the "url host" was supposed to be - I mean, normally, there is only the Host header in HTTP.

    Looking closer, it appears that this violation occurs for an initial proxy "setup" request, which looks like this:

     CONNECT targaryen:45633 HTTP/1.1
     Host: targaryen
    

    This is where the error makes sense to me.

    0 讨论(0)
  • 2020-12-16 19:06

    I couldn't get what I needed for the existing answers, but Eric Law's answer gave me what I needed to fix my issue. I was having a problem where I was calling a web server by IP address, and I had to add a Host header to get the right endpoint. Fiddler was changing the Host header to the IP address I was calling and removing my Host header value, which caused the call to fail. I added a line to Eric's script to solve this. I put the rule into OnBeforeRequest in the Fiddler Rules Script.

     if (oSession.BitFlags & SessionFlags.ProtocolViolationInRequest) 
        {
            var sOverride = oSession["X-Original-Host"];
    
            if (!String.IsNullOrEmpty(sOverride)) 
            {
                oSession["X-overrideHost"] = sOverride;
                oSession["ui-backcolor"] = "yellow";
                oSession.oRequest["Host"] = sOverride;
    
                // Be sure to bypass the gateway, otherwise overrideHost doesn't work
                oSession.bypassGateway = true;
            }
        }
    

    Took this Error:

    And changed it to this:

    0 讨论(0)
提交回复
热议问题