Hello, I am Kushan Gangaram.
I have recently joined the University of Mauritius for a Computer Science Degree.
This blog will be a progress for me on my programming and developers skills along with the projects I will make.
Thank You.
Get link
Facebook
X
Pinterest
Email
Other Apps
This blog will be dedicated to my journey related to programming, Linux, open source projects and much more.
What is OpenSSL? OpenSSL is an open source cryptographic tool used to secure communication over computer networks. Using the terminal we are going to connect to cyberstorm.mu which is acting as the server here, using OpenSSL from our VM which is the client. The command to be used : openssl s_client cyberstorm.mu:443 Note: s_client means we are in client mode and 443 is the port through which we are connecting to cyberstorm.mu Result from the command But what we are most interested in all of the output given is the ' Server Temp Key ' field. This field will help us identify whether this connection is using a post-quantum secure connection. As we are only focusing on the ' Server Temp Key ' field, we are going to use ' grep ' command with a pipe so we can search that field from the given output. The command to be used : openssl s_client cyberstorm.mu:443 | grep 'Server Temp Key' Result from above command How to know if a connection is using a post-quant...
Comments
Post a Comment