|
|
|
|
|
by narag
909 days ago
|
|
The SSL negotiation part happens before any other communication. Once the encrypted connection is established, how do you analize the protocol? Edit: I tested that time ago: https://news.ycombinator.com/item?id=38753897 And to save roundtrips: I believe it must be possible to analyze encrypted traffic to find out which protocol is used. But I doubt that the hospital admins are so motivated or sophisticated. |
|
An SSH server and client do not use SSL/TLS to set up the connection. They use the SSH protocol.
As soon as you connect to an SSH server, the server sends an identification string. The identification string always starts with:
It's trivial to detect.In the old days, corporate firewall rules were based solely on port numbers. So you could connect to an outside SSH server running on port 80, even if port 22 was blocked. Nowadays, an SSH server running on any port (80, 443, or any other) can easily be detected and blocked.