How to intercept HTTP requests and responses of a client machine (like fiddler does)

后端 未结 8 540
囚心锁ツ
囚心锁ツ 2020-12-24 15:00

I thought that the only way to intercept a request is to use a proxy, but fiddler somehow can intercept HTTP requests and responses without configuring anything on any brows

相关标签:
8条回答
  • 2020-12-24 15:41

    May be running the network interface in promiscuous mode. This is how WireShark is able to monitor network traffic and display it.

    More Info: http://en.wikipedia.org/wiki/Promiscuous_mode

    0 讨论(0)
  • 2020-12-24 15:47

    Fiddler is a proxy, written in C# and wrapping basic sockets.

    It registers with WinINET using the appropriate API call while running, and detaches in the same way. Most browsers automatically detect the WinINET proxy setting and use it. Firefox does not, which is why current versions of Fiddler install a Firefox addon.

    -EricLaw [MSFT]

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