Category Linux

Check SSL TLS cipher suites in Linux

An SSL cipher, or an SSL cipher suite, is a set of algorithms or a set of instructions/steps that helps to establish a secure connection between two entities. SSL cipher suites determine the method through which a secure connection will…

Check SSL Connection with OpenSSL S_client Command

SSL (Secure Sockets Layer) connection is a connection that provides secure communications on the Internet for such things as web browsing, e-mail, instant messaging, and other data transfers. Although SSL was replaced by an updated protocol called TLS (Transport Layer…

Understanding SSL certificates

Server certificates are known as SSL/TLS certificates. It verifies and validates the identity of the certificate holder or applicant before authenticating it. It also establishes an encrypted communication channel and switches the protocol to HTTPS once installed on the server.…

Exploring SSH Port Number – Port 22

The port number for SSH is 22 by default. Whenever we run a command through default SSH port number 22, a connection is established between client and server. Every connection initializes through this port. This tutorial explains why and how…

Enable SSH Port Forwarding with Examples

SSH (Secure Shell) is a widely used network protocol to securely log onto remote systems. One of its features is /SSH Port Forwarding/ (or SSH tunneling). This functionality forwards encrypted connections between a local and a remote computer. There are…