DEV Community

Discussion on: Automatic Deployment via good ol' FTP

Collapse
 
lampewebdev profile image
Michael "lampe" Lazarski

Just one thing to keep in mind:
FTP is not build to be secure.
FTP is sending usernames and passwords in clear text through the network.
FTP is vulnerable to sniffing, spoofing, and brute force attacks, among other basic attack methods.
SFTP should be used or SSH instead.

Collapse
 
devmount profile image
Andreas

Added a corresponding security hint in the article. Thanks again 😊

Collapse
 
devmount profile image
Andreas

Totally agree, thank you for this addition. git-ftp supports FTP, FTPS and SFTP, you just have to specify the protocol at the beginning of the url, e.g.:

ftps://your.server.com
Enter fullscreen mode Exit fullscreen mode