Why Doesn't Fiddler Show Curl Traffic?

15,697

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
Share:
15,697
BSalita
Author by

BSalita

Updated on June 02, 2022

Comments

  • BSalita
    BSalita almost 2 years

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

  • ScottCate
    ScottCate over 7 years
    Very Helpful - Thank you!
  • user24601
    user24601 over 6 years
    Is there a way to get curl to trust the Fiddler root cert?
  • yeah22
    yeah22 about 3 years