I have been using Firebug and cURL for quite a while.
Firebug is amazing to capture HTTPS POST request as opposed to a network analyser as it is aware of SSL/TLS negotiation. And cURL is amazing to resend that POST request after modifying parameters.
When I use firebug, I "Copy as cURL" a (HTTPS) POST request, and replay it from a Terminal.

However when I replay this in Terminal, the response that I can see is encrypted.

Questions:
- Can I decrypt that Terminal output ?
- Can I inject that cURL POST in the browser (firefox) to see the WebServer response decrypted ?
Thank you