b) Avoid using Ephemeral RSA, so Wireshark can decrypt
If you are an Apache web server, try the following:
httpd.conf SSLProtocol +all -SSLv2 -SSLv3 SSLCipherSuite -kEECDH:-kEDH:+kRSA:+HIGH:+MEDIUM:-LOW:-EXP
c) Make SSL use zero encryption so I can just read the code to debug it
This might be a little trickier, but try moving eNULL to the top of the list. eNULL will probably be rejected by the client, but worth a try. I suspect it will be rejected because the client will not allow encryption (or aNULL , for that matter).
If the client has eNULL , it may still not be used. The server usually respects client ciphers, so if the client does not request eNULL , you will have to find an override in the server configuration.
jww
source share