Questions tagged [ftps]

An extension to the commonly used File Transfer Protocol (FTP) that adds support for the Transport Layer Security (TLS) and the Secure Sockets Layer (SSL) cryptographic protocols.

FTPS (also known as FTP-ES, FTP-SSL and FTP Secure) is an extension to the commonly used File Transfer Protocol (FTP) that adds support for the Transport Layer Security (TLS) and the Secure Sockets Layer (SSL) cryptographic protocols.

FTPS should not be confused with the SSH File Transfer Protocol (SFTP), an incompatible secure file transfer subsystem for the Secure Shell (SSH) protocol. It is also different from Secure FTP, the practice of tunneling FTP through an SSH connection. For SFTP, see the corresponding tag .

545 questions
10
votes
2 answers

How to fix FileZilla's response: "550 The supplied message is incomplete. The signature was not verified."?

How to fix FileZilla's response: 550 The supplied message is incomplete. The signature was not verified. What is wrong with this? Is this in my hosting site or in my FileZilla setup?
Ruston
  • 109
  • 1
  • 1
  • 7
10
votes
8 answers

How do I get lftp to use SSL/TLS security mechanism from the command line?

I'm trying to log into an ftps site. I've tried giving the login creds at the command line (and putting set parameters in ~/.lftprc, then opening an lftp session and typing those parameters with lftp job control statements. Regardless, I keep…
user2105469
  • 1,413
  • 3
  • 20
  • 37
9
votes
7 answers

Python module that implements ftps

I was wondering if anybody could point me towards a free ftps module for python. I am a complete newbie to python, but this is something I need for a work project. I need an ftps client to connect to a 3rd party ftps server. thanks, David.
David Turner
  • 5,014
  • 6
  • 26
  • 27
9
votes
4 answers

commons-net is compatible with ssh-2.0 protocol

i have tried create a project with library commons.net for send via ftp some files. But i created a connection with my server i have received this error. org.apache.commons.net.MalformedServerReplyException: Could not parse response code. Server…
Nopesound
  • 482
  • 1
  • 13
  • 28
8
votes
0 answers

How to override server certificate validation when using FtpWebRequest?

HttpWebRequest.ServerCertificateValidationCallback allows you to override the logic for server certificate validation when using HTTPS. There is no equivalent property on FtpWebRequest. How can I override server certificate validation when using…
Ergwun
  • 12,579
  • 7
  • 56
  • 83
8
votes
3 answers

The underlying connection was closed. The server committed a protocol violation

I am trying to get the directory list of a FTPS FileZilla server using the code below : ftpRequest = (FtpWebRequest)FtpWebRequest.Create(host + "/" + directory); ftpRequest.EnableSsl = true; ServicePointManager.ServerCertificateValidationCallback =…
MadNeox
  • 2,453
  • 3
  • 15
  • 26
8
votes
1 answer

Is it possible to work with FTPS under PHP using stream context?

I learned that using ftps (´ftp_ssl_connect()´) under PHP for Windows is tough. You are asked to enter a long journey of building your own binaries to include Open SSL... I found advice on phpseclib as a replacement (but getting openssl.cnf right to…
Frank N
  • 9,625
  • 4
  • 80
  • 110
7
votes
3 answers

Alternatives to commons-net FTPSClient?

Do you know any good open source library other than Apache commons-net FTPSClient to interact with a FTPS site Regards,
Jose Diaz
  • 5,353
  • 1
  • 31
  • 29
7
votes
2 answers

Transfer files from android with FTPS to the server

I am using the Apache Commons FTP library in my android application I am making the connection through FTPS, and although it connects perfectly to the server, I have a problem when transferring files. The client who orders the app, for security…
Sergio76
  • 3,835
  • 16
  • 61
  • 88
7
votes
0 answers

connecting to a ftps server from node.js

I set up a simple ftps server in Ubuntu using the vsftpd and I was able to access the server from the filezilla without any problem. But I want to be able to connect to it from a node.js script so that I can read / write files thru it. I tried 2…
Sam
  • 1,311
  • 2
  • 23
  • 47
6
votes
1 answer

Upload file to implicit FTPS server in C# with TLS session reuse

I'm trying to upload file to FileZilla server through ftps by protocol TLS. On the server port 20 and 21 is closed. The only way how I managed to connect to server is by using FluentFTP but I couldn't upload file because of some FileZilla server…
Rafal Rafal
  • 83
  • 2
  • 7
6
votes
1 answer

Unable to verify the first certificate - Nodejs TLS

I'm using the node-module basic-ftp to try to establish a secure connection via TLS/ SSL. The server uses a wildcard CA-signed certificate as it's hostname. I can't seem to find an answer for the followig error code. Connected to 1.1.1.1:21 < 220…
M. Haenzi
  • 61
  • 1
  • 3
6
votes
2 answers

I need help converting a C# string from one character encoding to another?

According to Spolsky I can't call myself a developer, so there is a lot of shame behind this question... Scenario: From a C# application, I would like to take a string value from a SQL db and use it as the name of a directory. I have a secure (SSL)…
Handleman
  • 754
  • 2
  • 10
  • 19
6
votes
1 answer

FTPS publish in Visual Studio fails, results in "Secure connection was closed by the remote connection end."

I have an ASP.NET website that is hosted on a client's web-server, which I used to be able to publish directly from Visual Studio with Web One Click Publish. The connection was made over FTPS, so would connect to the server's IP address on port 21;…
Bassmanjase
  • 167
  • 4
  • 14
6
votes
2 answers

FluentFTP - Getting error while connecting "Timed out trying to read data from the socket stream!"

Getting Timed out trying to read data from the socket stream! when connecting to FTP using FluentFTP. Below is the source code which I am using to connect: Console.WriteLine("Configuring FTP to Connect to {0}", hostname); ftp = new…
Vijai Maurya
  • 101
  • 1
  • 1
  • 8
1
2
3
36 37