Daniel
Daniel

Reputation: 1793

ipv4.fiddler, how does it work?

I'm curious as to how fiddler is able to capture traffic when you use the URL ipv4.fiddler. Is ipv4 a special domain that resolves local and fiddler just registers with http.sys to proxy the call?

Any insight would be great.

Upvotes: 14

Views: 8415

Answers (2)

Prajwol KC
Prajwol KC

Reputation: 416

Just goto to your IP like 192.168.0.100 where the Fiddler is running. Your will a page to download the certificate

Upvotes: 0

Eric Lawrence
Eric Lawrence

Reputation:

Easy: Fiddler is a proxy, it gets to see almost(*) all of the requests. When it sees a request bound for "ipv4.fiddler", it simply changes it to 127.0.0.1.

(*)The only reason Fiddler needs this at all is that some HTTP stacks are hardcoded to bypass the proxy for "localhost" addresses. By using the magic string "ipv4.fiddler", you can circumvent that hardcoded restriction.

Upvotes: 20

Related Questions