How to configure Fiddler to listen to localhost?

后端 未结 16 2213
长情又很酷
长情又很酷 2020-12-02 09:51

I want to monitor HTTP traffic between a process on my local machine and another (server) process, also running on my local machine.

How can I configure Fiddler to

相关标签:
16条回答
  • 2020-12-02 10:02

    By simply adding fiddler to the url

    http://localhost.fiddler:8081/
    

    Traffic is routed through fiddler and therefore being displayed on fiddler.

    0 讨论(0)
  • 2020-12-02 10:03

    Add a dot . after the localhost.

    For example if you had http://localhost:24448/HomePage.aspx

    Change it to http://localhost.:24448/HomePage.aspx

    Internet Explorer is bypassing the proxy server for "localhost". With the dot, the "localhost" check in the domain name fails.

    0 讨论(0)
  • 2020-12-02 10:06

    I am running Fiddler v4.4.7.1. I needed to use localhost:8888 or machinename:8888 when using the Composer tab. Look at the Help/About Fiddler menu option, where it says, "Running on:". Mine shows machinename:8888 there.

    0 讨论(0)
  • 2020-12-02 10:09

    Specific to Firefox, which does not go through Internet Options like IE, Chrome, and Edge do, you can use about:config to modify preferences, find the preference network.proxy.no_proxies_on and remove localhost from it.

    This was the default setting for Firefox Developer Edition 66.0b2 and worked with Fiddler 5.0.20182.28034.

    (Other listed solutions do work, this solution allows you to not change the host you are navigating to.)

    0 讨论(0)
  • 2020-12-02 10:12

    tools => fiddler options => connections there is a textarea with stuff to jump, delete LH from there

    0 讨论(0)
  • 2020-12-02 10:13

    Go to proxy settings in Firefox and choose "Use system proxy" but be sure to check if there is no exception for localhost in "no proxy for" field.

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