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
4
votes
1 answer

Parameters in Path Segments of URL

There is one interesting thing in URL format: Parameters in Path Segments of URL. For more information see section "2.2.5" in "O'Reilly - HTTP - The Definitive Guide". This book can be found freely in Internet. or in official…
Vitaly
  • 845
  • 1
  • 10
  • 29
4
votes
2 answers

Setting WinSCP with explicit TLS encryption

I am trying to connect to a FTP server with following setting This setting works well and I can connect to FTP server via GUI (version 5.7.5) However, when I try to convert these settings to script winscp.com /command "option batch abort" "option…
wraith
  • 351
  • 3
  • 18
4
votes
3 answers

How can I write a file on an sftp-server with PHP?

I hope someone here could help me, because I couldn't find any solution with Google. What I have to do is to generate a XML-string (that works) an save that directly into a file on an sftp-server. So far, so good... I used the following code with…
Daniel
  • 91
  • 5
4
votes
2 answers

FTP upload error with Python and ftplib.

I'm trying to run a simple ftps script to upload a file on a scheduled basis from a Linux box to a ftps instance running on Windows Server 2012. When I try and test the script on my desktop (OS x), the script errors out: Error uploading file:…
Cesar
  • 423
  • 5
  • 14
4
votes
2 answers

Publish to FTPS using Jenkins

My provider currently only provides FTPS as a means of uploading files to the server. Now I want to publish files from Jenkins to that server. I can access the server using an FTP client that supports FTPS but neither of the FTP-Publisher plugins,…
Besi
  • 22,579
  • 24
  • 131
  • 223
4
votes
3 answers

android ftp file tranfer over explicit TLS

I'm posting this question after have tried over and over again to get it working, with no success. I trying to implement a FTP file transfer in android, using apache commons library. The communication must be done through explicit TLS…
Apperside
  • 3,542
  • 2
  • 38
  • 65
4
votes
1 answer

Encrypted Transfer With Ruby FTPS

I am trying to fetch files from a server using FTPS. I'm able to authenticate but when I try to list/fetch the files, I get a "521 Data connections must be encrypted". Is the Net::FTP module capable of this, and how would I accomplish it? I modified…
Derek
  • 1,196
  • 11
  • 32
4
votes
2 answers

How can I make my delphi application use FTPS instead of FTP (indy)

Here's my program: Application.FTP.Host:= vHost; Application.FTP.Port:= vPort; try Application.FTP.AutoLogin := false; Application.FTP.Connect; Application.FTP.IOHandler.RecvBufferSize := 2048; I'm using TIdFTP component in Delphi XE3. I…
user1398287
  • 5,245
  • 5
  • 21
  • 25
4
votes
1 answer

Deleting a file via PHP's curl over ftps connection is echoing directory contents

This code is behaving strangely. All I am trying to do is delete a file over an FTPS connection and determine if it worked. The delete is happening perfectly, but I am experiencing a side-effect. I can't figure out why, but something is causing the…
Tanoro
  • 871
  • 2
  • 10
  • 30
4
votes
5 answers

FTP over SSL for C#

I'm using the code below (needs to be .Net 2.0) to connect on a UAT server to a customer FTP server to up/down load files. I need to connect over port 990, using a self signed certificate supplied by them. I've got the firewall rules amended to…
Neil Carey
  • 39
  • 1
  • 1
  • 2
4
votes
1 answer

How to configure client authentication with apache.commons.net.ftps?

I implemented a FTPS client (FTP over SSL/TLS) in java using the apache.commons.net-framework. It is configured to do explicit security on the default port 21. ftpsClient = new…
Andy
  • 1,964
  • 1
  • 15
  • 29
4
votes
1 answer

FTPS on Azure Worker role

I need to deploy a Azure Worker Role with input endpoint on port 21 so that it can accepts incoming FTP connections.so that i should be able to connect to worker role through FTP Client like Filezilla and access the azure blob storage. For secured…
Vivek Misra
  • 265
  • 4
  • 13
3
votes
7 answers

when using a FTPS connection to transfer a file, what is the difference between a 'Binary mode transfer' and 'ASCII mode transfer'?

I am using a FTPS connection to send a text file [this file will contain EDI(Electronic Data Interchange) information]to a mailbox INOVIS.I have configured the system to open a FTPS connection and using the PUT command I write the file to a folder…
shaleen mohan
  • 71
  • 2
  • 4
3
votes
1 answer

How to establish a FTPS data connection to a FileZilla Server 1.2.0

It is a known problem to use the Java FTPSClient of Apache commons-net with session resumption. Session resumption is a security feature which a FTPS server can require for data connections. The Apache FTPSClient does not support session resumption,…
mperktold
  • 436
  • 4
  • 14
3
votes
0 answers

Python - [SSL: DH_KEY_TOO_SMALL] dh key too small

I have python script which uses FTP_TLS to get access to FTPS server. When I try to do_handshake next error appears: File "/usr/local/lib/python3.7/ftplib.py", line 749, in login self.auth() File "/usr/local/lib/python3.7/ftplib.py", line…