Is ftp connection to secure server in c++ program secure with libcurl?I need to make a client program that will receive and write data to the host.
>Solution :
FTP is insecure, it transfers data, user names & passwords in the clear. Don’t use it. Use either https, scp or sftp.