Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to configure Fiddler to listen to localhost?

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 listen to traffic to and from localhost?

like image 821
The Light Avatar asked Jan 10 '11 13:01

The Light


People also ask

Can Fiddler capture localhost traffic?

Internet Explorer and the . NET Framework are hardcoded not to send requests for Localhost through any proxies, and as a proxy, Fiddler Classic will not receive such traffic.

What port should Fiddler listen on?

Fiddler listens on port—Defines the port that Fiddler Everywhere uses to listen for web traffic. The default port is 8866.

How do I enable Fiddler proxy?

Set Remote Machine Proxy SettingsStart Fiddler Classic on the Fiddler server (the machine that will capture the traffic). Click Tools > Options. Ensure Allow remote clients to connect is checked. On the other machine, set the proxy settings to the machine name of the Fiddler server at port 8888.

Can Fiddler capture desktop application traffic?

You can use Fiddler to create an HTTP session of the monitored web application. In Fiddler, go to Tools > Fiddler Options > HTTPS. Select Capture HTTPS CONNECTs and Decrypt HTTPS traffic. Go to File > Capture Traffic or press F12 to turn off capturing.


1 Answers

By simply adding fiddler to the url

http://localhost.fiddler:8081/ 

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

like image 148
Tomer Avatar answered Sep 29 '22 14:09

Tomer