PowerBuilder
PowerBuilder
Require Specific FTPS Server Certificate Fields
See more FTP Examples
Demonstrates the Chilkat Ftp2.SetSslCertRequirement method, which adds a required match against the FTP server certificate. The first argument selects the certificate field (such as SubjectCN or IssuerCN) and the second is the required value. It is a void method; a non-matching certificate causes the connection to fail.
Background: Standard TLS validation confirms a certificate is trusted and valid for the hostname, but it does not guarantee you reached the specific server you expect — a form of pinning closes that gap. Requiring a certificate field to match a known value rejects any certificate that does not, defending against a mis-issued or substituted certificate even if it would otherwise pass validation. Multiple requirements can be added, and all must be satisfied.
Chilkat PowerBuilder Downloads
integer li_rc
integer li_Success
oleobject loo_Ftp
li_Success = 0
// Demonstrates the Ftp2.SetSslCertRequirement method, which adds a required match against the FTP
// server certificate. The 1st argument selects the certificate field and the 2nd is the required
// value. It is a void method.
loo_Ftp = create oleobject
li_rc = loo_Ftp.ConnectToNewObject("Chilkat.Ftp2")
if li_rc < 0 then
destroy loo_Ftp
MessageBox("Error","Connecting to COM object failed")
return
end if
loo_Ftp.Hostname = "ftp.example.com"
loo_Ftp.Username = "myFtpLogin"
// Normally you would not hard-code the password in source. You should instead obtain it
// from an interactive prompt, environment variable, or a secrets vault.
loo_Ftp.Password = "myPassword"
// Use explicit FTPS (AUTH TLS) on the standard FTP port.
loo_Ftp.AuthTls = 1
// Require that the server certificate's subject common name matches an expected value. If the
// presented certificate does not match, the TLS connection fails. Supported fields include
// SubjectDN, SubjectCN, IssuerDN, IssuerCN, and others.
loo_Ftp.SetSslCertRequirement("SubjectCN","ftp.example.com")
li_Success = loo_Ftp.Connect()
if li_Success = 0 then
Write-Debug loo_Ftp.LastErrorText
destroy loo_Ftp
return
end if
Write-Debug "Connected; server certificate met the requirement."
li_Success = loo_Ftp.Disconnect()
if li_Success = 0 then
Write-Debug loo_Ftp.LastErrorText
destroy loo_Ftp
return
end if
destroy loo_Ftp