In my iPhone app I'm using an https
connection with a self-signed SSL
certificate to download sensible data (username and password) from a server.
This app is for private use only, it is not meant for production.
I'm using AFNetworking
to manage the https
connection but, since my certificate isn't signed from a CA, in order to make it work I had to add the following to the header of the AFURLConnectionOperation
class:
#define _AFNETWORKING_ALLOW_INVALID_SSL_CERTIFICATES_ 1
But with this my app will allow any certificate.
Is there a way to allow only the certificate from my server maybe bundling it in the app and comparing it with the certificate provided by the server in the https connection? And if it were possible, would there be any significant advantage in terms of security?
I'm very new to security and I'm kind of confused.
When pushing, pulling, or cloning, Git cannot verify your SSL certification, which leads to the error. A valid HTTPS handshake requires both the client and the server to create a secure connection, allowing for safe communication between your local machine and where the source code is hosted.
As such, one of the common questions that many enterprises ask when they are considering investing or renewing their security certificates, is: “Can I use just one TLS/SSL Certificate to secure multiple domains?” The answer is, obviously, yes—you can buy one wildcard SSL certificate to secure unlimited subdomains.
The term you're looking for is SSL Pinning, where the app verifies that a known certificate or public key matches one presented by a remote server.
AFNetworking supports both pinning with certificates or public keys. You'll need to add the certificate(s) or public key(s) to your app's Bundle, and enable the feature by setting either the defaultSSLPinningMode
property on AFHttpClient or the SSLPinningMode
property on AFURLConnectionOperation
.
You can pin using AFSSLPinningModePublicKey
or AFSSLPinningModeCertificate
. AFSSLPinningModeCertificate
means that the server's certificate must exactly match one of those in the bundle.
AFSSLPinningModePublicKey
is more liberal and means that the server's certificate must match for any public key in the bundle, or any public key attached to certificates in the bundle.
There's an example of setting the pinning mode in the AppDotNet example.
To expand a bit on David's answer with respect to AFSSLPinningModePublicKey
versus AFSSLPinningModeCertificate
. Ideally, you would pin the public key and not the certificate. That's because some sites and services, like Google, rotate their certificates every 30 days or so. But they re-certify the same public key.
The certificates are rotated frequently to keep the size of the CRL small for mobile clients. But they re-certify the same public key (rather than creating a new one) to allow for key continuity testing.
Public key pinning is why tools like Certificate Patrol miss the mark. The certificate is expected to change; the public key is not.
Public key pinning is a lot like SSH's StrictHostKeyChecking
, if you are familiar with it.
OWASP has a write-up on it too at Certificate and Public Key Pinning.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With