The provider I am taking the file from is changing from FTP to FTP over SSL.
I am trying to update my code from net/ftptonet/ftptls
The new host that I need to connect to is not certified, and my script reports this error.
hostname does not match server certificate
The provider will not fix this.
Looking at /usr/lib/ruby/1.8/net/ftptls.rb, I thought it would not be too difficult to use FTPTLS for monkey patches to ignore an untrusted host.
I tried changing verify_modeto OpenSSL::SSL::VERIFY_NONEand commenting out the post_connection_check` line.
did not work.
Any thoughts on how to do this?
require 'socket'
require 'openssl'
require 'net/ftp'
module Net
class FTPTLS < FTP
def connect(host, port=FTP_PORT)
@hostname = host
super
end
def login(user = "anonymous", passwd = nil, acct = nil)
store = OpenSSL::X509::Store.new
store.set_default_paths
ctx = OpenSSL::SSL::SSLContext.new('SSLv23')
ctx.cert_store = store
ctx.verify_mode = OpenSSL::SSL::VERIFY_PEER
ctx.key = nil
ctx.cert = nil
voidcmd("AUTH TLS")
@sock = OpenSSL::SSL::SSLSocket.new(@sock, ctx)
@sock.connect
@sock.post_connection_check(@hostname)
super(user, passwd, acct)
voidcmd("PBSZ 0")
end
end
end
source
share