How can I debug HTTP sessions using Fiddler, as with TcpTrace?

I am trying to stop using TcpTrace and get started with Fiddler.

But I just can’t configure the violinist to just start listening to the specified port and redirect all requests to the specified WS with a different port.

All I want is to simply redirect and monitor all traffic from localhost: 4747 -> webservice-ip: 10000
Is there a solution for my problem?

Thanks in advance.

+3
source share
1 answer

Fiddler 4747, CustomRules.js (menu- > Rules- > Customize Rules). - OnBeforeRequest :

if (oSession.host=="localhost:4747") {
  oSession.host="external:1000";
}

, , Fiddler, ,

oSession.host="external:1000";

( external - )

+2

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


All Articles