I have to analyze SSL encryption in my test network and want to prove the transported data is encrypted. What methods can I use to prove encryption is in place?
Tell me more
×
IT Security Stack Exchange is a question and answer site for
IT security professionals. It's 100% free, no registration required.
|
|
Another tool that will help ensure that you have correctly setup your SSL option is sslyze (Available here) which will test your configuration to ensure that you are using the best encryption algorithms available and that you do not allow re-negotiation to weaker algorithms, thereby negating all the hard work of checking that you are encrypting data in the first place. |
|||||
|
|
If you just want to see that a SSL handshake occurs, just use a network monitor tool, like the aptly named Network Monitor from Microsoft. It will show you the details of the SSL handshake (see this answer for some details on the SSL handshake). Of course, at some point, data encryption begins, and you will then only see "encrypted application data", which is what you wanted. |
|||
|
|