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
5
votes
2 answers

FTP to FTPS proxy

Visual Studio 2010 allows to publish web projects via FTP. Great feature but due to security reasons FTP is disabled at the target site (FTPS is available). As far as I know VS2010 does not support FTPS ;( Is there any plugin for VS2010 that…
Vitas
  • 243
  • 4
  • 10
5
votes
3 answers

PHP curl FTPes w/ explicit TLS/SSL

I've been trying to push to a remote FTP with an explicit TLS/SSL server and the connection keeps timing out. It's connecting but I don't know where it's stopping but I'm assuming it's something do to with the FTP/TLS/SSL control channel. Any help…
jbrahy
  • 4,228
  • 1
  • 42
  • 54
5
votes
1 answer

How to validate a certificate?

I am just starting a project where by I will need to connect, using FTPS, to a 3rd party server. They are to provide us with their certificate I don't have it yet, so I am going to create our own development environment to get started. I am using…
Raymond
  • 3,382
  • 5
  • 43
  • 67
5
votes
1 answer

How to create a "FTPS" Mock Server to unit test File Transfer in Java

I have a CreateFTPConnection class which create a FTPS connection. Using this connection, files are transferred. Here is the code of TransferFile class public class TransferFile { private CreateFTPConnection ftpConnection; private FTPSClient…
Jyoti Ranjan
  • 703
  • 2
  • 13
  • 29
5
votes
4 answers

Controlled Logging for Apache-commons-net lib (Java)

I have a very small Java program that is capable of performing FTP over SSL (not SFTP) or FTPS, using apache-commons-net library. The reason why I wrote this program is the client machine is AIX 5.3 which does not support FTP over SSL (OOTB), and…
Anjan Biswas
  • 7,746
  • 5
  • 47
  • 77
5
votes
1 answer

FTP commands send vs put

I am having some issues with a dos file we run over night that sends some files to another companies ftp server, The other company has checked their logs and we are connecting and are able to log in but no files are ever transferred. I was…
user1329836
  • 95
  • 1
  • 2
  • 9
4
votes
1 answer

"534 Policy requires SSL" when connecting to an FTPS server with commons-net

I am trying to connect to an FTPS server using the commons-net library. I can connect properly but when I try to list the files, I get the error "534 Policy requires SSL." import java.io.IOException; import java.net.SocketException; import…
sheu
  • 284
  • 5
  • 13
4
votes
1 answer

Connect to FTPS server

I write FTPS server, and I have problems with ssl connection after AUTH TLS command. Simple example: try { int ServerPort = 21; ServerSocket FtpExServer = new ServerSocket(ServerPort); while(true) { Socket S =…
smie
  • 592
  • 1
  • 9
  • 25
4
votes
5 answers

connect to ftps site via java

I am trying to connect to a clients ftps server via my java code. I am using apache commons library to do so. However, I am not able to do so. Can anyone please help me with this. The client server uses FTPS/Implicit SSL connection and uses Passive…
Vivek
  • 957
  • 4
  • 12
  • 18
4
votes
0 answers

FluentFTP throws "System.IO.IOException: Authentication failed" when trying to list files on ftps server

Description When connecting to a FileZilla FTPS server with FluentFTP, we get a System.IO.IOException: Authentication failed because the remote party has closed the transport stream. when trying to list files. We can establish the initial…
adhominem
  • 1,104
  • 9
  • 24
4
votes
1 answer

FTPS or HTTPS - which is the better way to transfer big files from hundreds of clients to server using Java?

Parameters for evaluation: - 1000 connections from the client (connection may be slow in some cases) - Multithreaded upload when connection is good (of the same file, or different files) - Ability to resume an upload from the client - SSL/TLS…
raleigh_r
  • 41
  • 2
4
votes
1 answer

Connect to FTPS with proxy in C#

My below code works perfectly fine in my computer without proxy. But in client server they need to add proxy to the FTP client (FileZilla) to be able to access the FTP. But When I add proxy it says SSL cannot be enabled when using a proxy. FTP…
Reynan
  • 261
  • 2
  • 9
  • 23
4
votes
1 answer

FTPS with PHP Curl getting partial download

I'm having an issue retrieving a file using php curl over ftps with implicit ssl (as discussed here: ftp_ssl_connect with implicit ftp over tls). The problem is that sometimes - probably 5% of the time, I end up with a partial download. My class is…
4
votes
2 answers

When using Java Apache FTPClient for FTP TLS getting "Remote host closed connection during handshake"

I ran a Java (1.8) program on Windows 10 64x for FTP TLS (org.apache.commons.net.ftp): FTPSClient ftpClient = new FTPSClient(); System.setProperty("https.protocols", "TLSv1,TLSv1.1,TLSv1.2"); // LISTENER ftpClient.addProtocolCommandListener( …
M. Alexandre
  • 61
  • 1
  • 4
4
votes
1 answer

Sending files over FTPS (secure) using WinSCP .NET assembly

What is required to send out files to a server with WinSCP (.NET assembly) using FTPS (Secure)? I've been looking at their documentation and am not really clear on certain aspects like TlsHostCertificateFingerprint or TlsClientCertificatePath.…
Newbie
  • 157
  • 4
  • 15