Why Doesn't Fiddler Show Curl Traffic?

WindowsSslCurlProxyFiddler

Windows Problem Overview


Why doesn't Fiddler show curl traffic? Other traffic gets displayed, just not curl. How can I get fiddler to intercept curl traffic?

Windows Solutions


Solution 1 - Windows

Fiddler will not intercept curl traffic by default. You'll need to specify the -x proxy option. If curl displays an SSL error message, additionally use the -k option to disable SSL validation.

curl -x 127.0.0.1:8888 -k www.example.com

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBSalitaView Question on Stackoverflow
Solution 1 - WindowsBSalitaView Answer on Stackoverflow