Command to know TLS Version:

openssl ciphers -v | awk '{print $2}' | sort | uniq

For TLS 1.3:

openssl s_client -connect www.google.com:443 -tls1_3

For TLS 1.2:

openssl s_client -connect www.google.com:443 -tls1_2

For TLS 1.1:

openssl s_client -connect www.google.com:443 -tls1_1

For TLS 1:

openssl s_client -connect www.google.com:443 -tls1

If you get the certificate chain and the handshake then the TLS version is supported. If you don’t see the certificate chain, and something similar to “handshake error” then its not.

Related posts

Check Log for cPanel password change

cat /usr/local/cpanel/logs/access_log | grep changepass.html
cat /usr/local/cpanel/logs/access_log | grep username

cat /var/cpanel/accounting.log | grep username

Useful Exim Commands

exigrep domain.com /var/log/exim_mainlogcat /home/username/.contactemailexim -bpc

List the messages in the queue:exim -bop

List frozen mais:exit -bp...

Monitoring Commands:

To know uptime and other parameters:

echo -n `uptime` && echo " - Cores: `grep...

Latest posts

Leave a Comment

Leave a Reply

Your email address will not be published. Required fields are marked *