Why doesn't Fiddler show curl
traffic? Other traffic gets displayed, just not curl
. How can I get fiddler to intercept curl
traffic?
Asked
Active
Viewed 1.7k times
2 Answers
97
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

BSalita
- 8,420
- 10
- 51
- 68
-
Very Helpful - Thank you! – ScottCate Dec 12 '16 at 16:43
-
3Is there a way to get curl to trust the Fiddler root cert? – user24601 Nov 05 '17 at 21:25
-
1@user24601 See [How to trust self-signed certificate in cURL command line?](https://unix.stackexchange.com/questions/451207/how-to-trust-self-signed-certificate-in-curl-command-line) – yeah22 Feb 07 '21 at 04:30
1
In Telerik Fiddler Classic, use
curl --url example.com -x 127.0.0.1.8888 --ssl-no-revoke

BillF
- 1,034
- 3
- 13
- 28