How to use Fiddler to monitor a Windows service?

It seems that Fiddler will not keep track of what is not working under the same user as Fiddler itself. I would like to track a Windows service that runs under Local System .

Is it possible?

+6
source share
2 answers

I did this using Is there a way to configure Fiddler to intercept HTTP calls from a Windows service?

Kodka gave the key to make me move in the right direction. which was still missing is how to configure the proxy..exe.config you need to have a section like the following added:

 <system.net> <defaultProxy enabled="true"> <proxy proxyaddress="http://127.0.0.1:8888" bypassonlocal="False"/> </defaultProxy> </system.net> 

Once this was done, the Windows service HTTP traffic started flowing through Fiddler.

+2
source

Source: https://habr.com/ru/post/907343/


All Articles