tags:

views:

83

answers:

1

We have a small office server running Linux Centos for internal use. I can connect to it externally though using Putty with SSH.

Since the server does not have any kind of SSL certificate, is using putty ssh still secure?

Thanks

+6  A: 

SSH does not depend on the SSL notion of signed certificate chains. SSH is using encryption, and certificates . You can also use user certificates instead of password based authentication (recommended).

SSH depends on a TOFU (Time of first use) certificate validation. When you connect to the server, it asks you to verify the key. The client then remembers this key. If the server suddenly presents a different key (possibly a man in the middle attack), you will be unable to connect without manual intervention.

Yann Ramin