ftps

ColdFusion Version 9 Secure FTP - Unable to Connect

邮差的信 提交于 2019-12-10 19:01:34
问题 I am looking to automate something that is currently being done manually. The manual process is being performed using ftp client Filezilla. These are the instructions: In the Host field, type in the IP address: xx.xxx.xxx.xxx. In the Port field, type in 990. In the Servertype dropdown list, change it so that it reads FTP over SSL/TLS (implicit encryption). (NOTE: On the Mac OSX version this option will read FTPS – FTP over implicit TLS/SSL). In the Logontype area, select Normal. In the

Git clone over ftps

纵饮孤独 提交于 2019-12-10 14:45:56
问题 Okay. So I have my site hosted on InmotionHosting. It's a shared server, so ssh is out. I've been accessing it via FTPS. I use git at work, so I've been curious to start using git for my personal site. Only issue, I'm unsure of how to connect to my current site using git. I know it's compatible with ftps, since it's in the manual, but I get the error: "failed to connect to [my site]" "couldn't resolve host" "fatal: HTTP request failed" "error while accessing [my site]/info/refs" I've tried:

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

痞子三分冷 提交于 2019-12-10 13:44:23
问题 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 the FTP host machine runs FileZilla server with only FTP over SSL enabled. The program runs great without any problem but the amount of logging it generates is huge. My question is- Is there a way to control the amount of logging ? ( Note Again - The

System.Net.FtpClient openwrite doesnt upload file unless I insert a sleep before exitting

守給你的承諾、 提交于 2019-12-10 13:23:23
问题 I'm using the System.Net.FtpClient assembly to upload a file to a test FTP site. When I run the below code the file doesn't appear in the remote location unless I use a Thread.Sleep as per below (which I'd prefer not to use): using System; using System.IO; using System.Net; using System.Net.FtpClient; using System.Security.Cryptography.X509Certificates; using System.Threading; namespace FtpsUploadTest { /// <summary> /// The ftp publisher. /// </summary> public class FtpPublisher { private

PHP attempting FTPS transfer creates empty files

无人久伴 提交于 2019-12-10 12:17:54
问题 I'm currently attempting to use PHP to transfer small files between our server and a remote FTPS (FTP over SSL) server. I'm the standard fair to get this done, ie, file_put_contents, file_get_contents, etc... with the following stream context: stream_context_create(array('ftp' => array('overwrite' => true), 'ssl' => array('allow_self_signed' => true))) I'm passing this context stream using the following code. It can connect to the FTPS server just fine, but when it comes to creating the

iPhone FTPS client

孤街醉人 提交于 2019-12-10 11:58:43
问题 I have no clue how to make an FTPS (FTP over SSL) on the iPhone. I would like to use the following code ftpStream = CFWriteStreamCreateWithFTPURL(NULL, (CFURLRef) url); CFWriteStreamSetProperty(ftpStream, kCFStreamPropertyFTPUserName,username); CFWriteStreamSetProperty(ftpStream, kCFStreamPropertyFTPPassword,password); self.networkStream = (NSOutputStream *) ftpStream; [self.networkStream setProperty:NSStreamSocketSecurityLevelSSLv3 forKey:(id)NSStreamSocketSecurityLevelKey]; self

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

帅比萌擦擦* 提交于 2019-12-10 02:46:56
问题 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? 回答1: This error is returned by Windows IIS server due to a known bug. For details see Microsoft KB 2888853. Quote from my article about the bug . 回答2: If the patch @Martin mentioned (KB 2888853) doesn't solve the issue, try the suggestions below. If you get “This update is not applicable” error while trying to

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

ⅰ亾dé卋堺 提交于 2019-12-09 16:45:19
问题 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 hitting the same roadblock: 421 Sorry, cleartext sessions are not accepted on this server. Please reconnect using SSL/TLS security mechanisms. I got furthest with the following parameters, but keep getting the error above. How do I get lftp to use SSL

Parameters in Path Segments of URL

我是研究僧i 提交于 2019-12-08 08:52:35
问题 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 specification https://www.ietf.org/rfc/rfc2396.txt section 3.3. 3.3. Path Component The path component contains data, specific to the authority (or the scheme if there is no authority component), identifying the resource within the scope of that scheme and authority.

ftp_nlist(): data_accept: SSL/TLS handshake failed

六眼飞鱼酱① 提交于 2019-12-08 08:14:29
问题 Once upon a time, there was a normalish error in PHP land: Warning: ftp_nlist(): data_accept: SSL/TLS handshake failed in [path] on line 29 But here's the catch, "line 29" is not the connection or login, note how it referenced the ftp_nlist() function: $ftp = ftp_ssl_connect($cred['host'], $cred['port'], 180); if (!ftp_login($ftp, $cred['user'], $cred['pass'])) {die("Login Failed");} ftp_pasv($ftp, true); $files = ftp_nlist($ftp, ''); OpenSSL is compiled and enabled in phpinfo() as suggested