Created
April 5, 2020 21:09
-
-
Save nerdybeast/2f64aa8e883088336429fcd266122c0f to your computer and use it in GitHub Desktop.
Get fiddler working on Linux Mint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Download the fiddler app image from Telerik site | |
Place app image somewhere (I have a folder called "app-images") | |
Make the app image executable (chmod +x <filename>.appimage) | |
Run fiddler and enable htttps traffic decryption: Settings => HTTPS => Decrypt Https Traffic | |
- This will give the option to export a self-signed ssl cert from Fiddler and it will place that in the desktop folder | |
Add the ssl cert to the system using these instructions: https://forums.linuxmint.com/viewtopic.php?t=256739 | |
I did: | |
- sudo mkdir /usr/share/ca-certificates/fiddler | |
- sudo cp ~/Desktop/fiddler.crt /usr/share/ca-certificates/fiddler/fiddler.crt | |
- sudo dpkg-reconfigure ca-certificates |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment