All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.squareup.okhttp.CertificatePinner Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2014 Square, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.squareup.okhttp;

import com.squareup.okhttp.internal.Util;
import java.security.cert.Certificate;
import java.security.cert.X509Certificate;
import java.util.Arrays;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.net.ssl.SSLPeerUnverifiedException;
import okio.ByteString;

import static java.util.Collections.unmodifiableSet;

/**
 * Constrains which certificates are trusted. Pinning certificates defends
 * against attacks on certificate authorities. It also prevents connections
 * through man-in-the-middle certificate authorities either known or unknown to
 * the application's user.
 *
 * 

This class currently pins a certificate's Subject Public Key Info as * described on Adam Langley's Weblog. Pins * are base-64 SHA-1 hashes, consistent with the format Chromium uses for static certificates. See Chromium's pinsets for hostnames that are pinned in that * browser. * *

Setting up Certificate Pinning

* The easiest way to pin a host is turn on pinning with a broken configuration * and read the expected configuration when the connection fails. Be sure to * do this on a trusted network, and without man-in-the-middle tools like Charles or Fiddler. * *

For example, to pin {@code https://publicobject.com}, start with a broken * configuration:

   {@code
 *
 *     String hostname = "publicobject.com";
 *     CertificatePinner certificatePinner = new CertificatePinner.Builder()
 *         .add(hostname, "sha1/AAAAAAAAAAAAAAAAAAAAAAAAAAA=")
 *         .build();
 *     OkHttpClient client = new OkHttpClient();
 *     client.setCertificatePinner(certificatePinner);
 *
 *     Request request = new Request.Builder()
 *         .url("https://" + hostname)
 *         .build();
 *     client.newCall(request).execute();
 * }
* * As expected, this fails with a certificate pinning exception:
   {@code
 *
 * javax.net.ssl.SSLPeerUnverifiedException: Certificate pinning failure!
 *   Peer certificate chain:
 *     sha1/DmxUShsZuNiqPQsX2Oi9uv2sCnw=: CN=publicobject.com, OU=PositiveSSL
 *     sha1/SXxoaOSEzPC6BgGmxAt/EAcsajw=: CN=COMODO RSA Domain Validation Secure Server CA
 *     sha1/blhOM3W9V/bVQhsWAcLYwPU6n24=: CN=COMODO RSA Certification Authority
 *     sha1/T5x9IXmcrQ7YuQxXnxoCmeeQ84c=: CN=AddTrust External CA Root
 *   Pinned certificates for publicobject.com:
 *     sha1/AAAAAAAAAAAAAAAAAAAAAAAAAAA=
 *   at com.squareup.okhttp.CertificatePinner.check(CertificatePinner.java)
 *   at com.squareup.okhttp.Connection.upgradeToTls(Connection.java)
 *   at com.squareup.okhttp.Connection.connect(Connection.java)
 *   at com.squareup.okhttp.Connection.connectAndSetOwner(Connection.java)
 * }
* * Follow up by pasting the public key hashes from the exception into the * certificate pinner's configuration:
   {@code
 *
 *     CertificatePinner certificatePinner = new CertificatePinner.Builder()
 *       .add("publicobject.com", "sha1/DmxUShsZuNiqPQsX2Oi9uv2sCnw=")
 *       .add("publicobject.com", "sha1/SXxoaOSEzPC6BgGmxAt/EAcsajw=")
 *       .add("publicobject.com", "sha1/blhOM3W9V/bVQhsWAcLYwPU6n24=")
 *       .add("publicobject.com", "sha1/T5x9IXmcrQ7YuQxXnxoCmeeQ84c=")
 *       .build();
 * }
* * Pinning is per-hostname and/or per-wildcard pattern. To pin both * {@code publicobject.com} and {@code www.publicobject.com}, you must * configure both hostnames. * *

Wildcard pattern rules: *

    *
  1. Asterisk {@code *} is only permitted in the left-most * domain name label and must be the only character in that label * (i.e., must match the whole left-most label). For example, * {@code *.example.com} is permitted, while {@code *a.example.com}, * {@code a*.example.com}, {@code a*b.example.com}, {@code a.*.example.com} * are not permitted. *
  2. Asterisk {@code *} cannot match across domain name labels. * For example, {@code *.example.com} matches {@code test.example.com} * but does not match {@code sub.test.example.com}. *
  3. Wildcard patterns for single-label domain names are not permitted. *
* * If hostname pinned directly and via wildcard pattern, both * direct and wildcard pins will be used. For example: {@code *.example.com} pinned * with {@code pin1} and {@code a.example.com} pinned with {@code pin2}, * to check {@code a.example.com} both {@code pin1} and {@code pin2} will be used. * *

Warning: Certificate Pinning is Dangerous!

* Pinning certificates limits your server team's abilities to update their TLS * certificates. By pinning certificates, you take on additional operational * complexity and limit your ability to migrate between certificate authorities. * Do not use certificate pinning without the blessing of your server's TLS * administrator! * *

Note about self-signed certificates

* {@link CertificatePinner} can not be used to pin self-signed certificate * if such certificate is not accepted by {@link javax.net.ssl.TrustManager}. * * @see * OWASP: Certificate and Public Key Pinning */ public final class CertificatePinner { public static final CertificatePinner DEFAULT = new Builder().build(); private final Map> hostnameToPins; private CertificatePinner(Builder builder) { this.hostnameToPins = Util.immutableMap(builder.hostnameToPins); } /** * Confirms that at least one of the certificates pinned for {@code hostname} * is in {@code peerCertificates}. Does nothing if there are no certificates * pinned for {@code hostname}. OkHttp calls this after a successful TLS * handshake, but before the connection is used. * * @throws SSLPeerUnverifiedException if {@code peerCertificates} don't match * the certificates pinned for {@code hostname}. */ public void check(String hostname, List peerCertificates) throws SSLPeerUnverifiedException { Set pins = findMatchingPins(hostname); if (pins == null) return; for (int i = 0, size = peerCertificates.size(); i < size; i++) { X509Certificate x509Certificate = (X509Certificate) peerCertificates.get(i); if (pins.contains(sha1(x509Certificate))) return; // Success! } // If we couldn't find a matching pin, format a nice exception. StringBuilder message = new StringBuilder() .append("Certificate pinning failure!") .append("\n Peer certificate chain:"); for (int i = 0, size = peerCertificates.size(); i < size; i++) { X509Certificate x509Certificate = (X509Certificate) peerCertificates.get(i); message.append("\n ").append(pin(x509Certificate)) .append(": ").append(x509Certificate.getSubjectDN().getName()); } message.append("\n Pinned certificates for ").append(hostname).append(":"); for (ByteString pin : pins) { message.append("\n sha1/").append(pin.base64()); } throw new SSLPeerUnverifiedException(message.toString()); } /** @deprecated replaced with {@link #check(String, List)}. */ public void check(String hostname, Certificate... peerCertificates) throws SSLPeerUnverifiedException { check(hostname, Arrays.asList(peerCertificates)); } /** * Returns list of matching certificates' pins for the hostname * or {@code null} if hostname does not have pinned certificates. */ Set findMatchingPins(String hostname) { Set directPins = hostnameToPins.get(hostname); Set wildcardPins = null; int indexOfFirstDot = hostname.indexOf('.'); int indexOfLastDot = hostname.lastIndexOf('.'); // Skip hostnames with one dot symbol for wildcard pattern search // example.com will be skipped // a.example.com won't be skipped if (indexOfFirstDot != indexOfLastDot) { // a.example.com -> search for wildcard pattern *.example.com wildcardPins = hostnameToPins.get("*." + hostname.substring(indexOfFirstDot + 1)); } if (directPins == null && wildcardPins == null) return null; if (directPins != null && wildcardPins != null) { Set pins = new LinkedHashSet<>(); pins.addAll(directPins); pins.addAll(wildcardPins); return pins; } if (directPins != null) return directPins; return wildcardPins; } /** * Returns the SHA-1 of {@code certificate}'s public key. This uses the * mechanism Moxie Marlinspike describes in Android Pinning. */ public static String pin(Certificate certificate) { if (!(certificate instanceof X509Certificate)) { throw new IllegalArgumentException("Certificate pinning requires X509 certificates"); } return "sha1/" + sha1((X509Certificate) certificate).base64(); } private static ByteString sha1(X509Certificate x509Certificate) { return Util.sha1(ByteString.of(x509Certificate.getPublicKey().getEncoded())); } /** Builds a configured certificate pinner. */ public static final class Builder { private final Map> hostnameToPins = new LinkedHashMap<>(); /** * Pins certificates for {@code hostname}. * * @param hostname lower-case host name or wildcard pattern such as {@code *.example.com}. * @param pins SHA-1 hashes. Each pin is a SHA-1 hash of a * certificate's Subject Public Key Info, base64-encoded and prefixed with * {@code sha1/}. */ public Builder add(String hostname, String... pins) { if (hostname == null) throw new IllegalArgumentException("hostname == null"); Set hostPins = new LinkedHashSet<>(); Set previousPins = hostnameToPins.put(hostname, unmodifiableSet(hostPins)); if (previousPins != null) { hostPins.addAll(previousPins); } for (String pin : pins) { if (!pin.startsWith("sha1/")) { throw new IllegalArgumentException("pins must start with 'sha1/': " + pin); } ByteString decodedPin = ByteString.decodeBase64(pin.substring("sha1/".length())); if (decodedPin == null) { throw new IllegalArgumentException("pins must be base64: " + pin); } hostPins.add(decodedPin); } return this; } public CertificatePinner build() { return new CertificatePinner(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy