I've seen several comments on internet in which people say something like:
"I've uninstalled SFTP server, it is much better, it remove security vulnerabilities"
What are these vulnerabilities, if there are any?
|
feedback
|
|
SFTP runs over SSH, although some servers use a separate executable for them. Whatever vulnerabilities that executable may have is what you're being protected from (although I've not heard of any myself). The protocol itself is as secure as your SSH server. | |||||||
feedback
|
|
SFTP has two meanings. The old meaning of SFTP is old Secure FTP, which only secured the control channel and left the data channel unencrypted. New SFTP is SSH FTP which secures all traffic with SSH. New SFTP good, old SFTP bad. Another alternative is SCP, which is usually faster than sftp. | |||||||||||||||
feedback
|