0% found this document useful (0 votes)
82 views8 pages

Pinning Cheat Sheet

Pinning Cheat Sheet

Uploaded by

Rizki Kurniawan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
0% found this document useful (0 votes)
82 views8 pages

Pinning Cheat Sheet

Pinning Cheat Sheet

Uploaded by

Rizki Kurniawan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
You are on page 1/ 8
972322, 649 AM Pinning - OWASP Cheat Sheet Series Pinning Cheat Sheet Introduction The Pinning Cheat Sheet is a technical guide to implementing certificate and public key pinning as discussed at the Virginia cherter's presentation Securing Wireless Channels in the Mobile Space, This guide is focused on providing clear, simple, actionable guidance for securing the channel in a hostile environment where actors could be malicious and the conference of trust a liability. What's the problem Users, developers, and applications expect end-to-end security on their secure channels, but some secure channels are not meeting the expectation. Specifically, channels built using well known protocols such as VPN, SSL, and TLS can be vulnerable to a number of attacks. What Is Pinning Pinning is the process of associating a host with their expected X509 certificate or public key. Once a certificate or public key is known or seen for a host, the certificate or public key is associated or ‘pinned’ to the host. If more than one certificate or public key is acceptable, then the program holds, a pinset (taking from Jon Larimer and Kenny Root Google 1/0 talk). In this case, the advertised identity must match one of the elements in the pinset. When to Add a Pin Ahhost or service's certificate or public key can be added to an application at development time, or it can be added upon first encountering the certificate or public key. The former - adding at development time - is preferred since preloading the certificate or public key out of band usually means the attacker cannot taint the pin. When Do You Perform Pinning You should pin anytime you want to be relatively certain of the remote host's identity or when operating in a hostile environment. Since one or both are almost always true, you should probably pin all the time. Intps:itcheatshectseries.owasp.orgicheatsheetsPinning_Cheat_Sheethiml 18 972322, 649 AM Pinning - OWASP Cheat Sheet Series When to Apply Exceptions Ifyou are working for an organization which practices “egress filtering” as part of a Data Loss Prevention (DLP) strategy, you will lkely encounter Interception Proxies. | like to refer to these things as "good" bad actors (as opposed to "bad" bad actors) since both break end-to-end security and we can't tell them apart. In this case, do not offer to allow-list the interception proxy since it defeats your security goals. Add the interception proxy’s public key to your pinset after being instructed to do so by the folks in Risk Acceptance. How Do You Pin The idea is to re-use the exiting protocols and infrastructure, but use them in a hardened manner. For re-use, a program would keep doing the things it used to do when establishing a secure connection. To harden the channel, the program would take advantage of the OnConnect callback offered bya library, framework or platform. In the callback, the program would verify the remote host's identity by validating its certificate or public key. See some examples below. What Should Be Pinned In order to decide what should be pinned you can follow the following steps. 1. Decide if you want to pin the root CA, intermediate CA or leaf certificate: + Pinning the root CA is generally not recommended since it highly increases the risk because it implies also trusting all its intermediate CAs. + Pinning a specific intermediate CA reduces the risk but the application will be also trusting any other certificates issues by that CA, not only the ones meant for your application. + Pinning a leaf certificate is recommended but must include backup (e.g. intermediate CA) It provides 100% certainty that the app exclusively trusts the remote hosts it was designed to connect to, For example, the application pins the remote endpoint leaf certificate but includes a backup pin for the intermediate CA. This increases the risk by trusting more certificate authorities but decreases the chances of bricking your app. If there's any issue with the leaf certificate, the app can always fall back to the intermediate CA until you release an app update. 2. Choose if you want to pin the whole certificate or just its public key. 3. Ifyou chose the public key, you have two additional choices: 4,Pin the subjectPublickeyInfo., Intps:itcheatshectseries.owasp.orgicheatsheetsPinning_Cheat_Sheethiml 218 9123/22, 8:49.AM Pinning - OWASP Cheat Sheet Series 5. Pin one of the concrete types such as RSAPublickey oF DSAPublicKey. subjectPublickeyinfo: Fiemann: :pubkey-pin-openss1$ dunpasni.exe randon-org.der © 290: SEQUENCE < 4 13: SEQUENCE { 6 9: OBJECT IDENTIFIER rsaEncryption (1 2 840 113549 11 1) 7 NULL. } 19 271: BIT STRING, encapsulates { 24 266: SEQUENCE { 28 257: INTEGER, 00 53 SE AB AD AF 4C 86 0B 5A 54 58 1F OC CB AF 61 9F F2 F1 9D F6 DE E8 2E AD 67 AC 1A 91 16 AC CB 83 86 2F 2 7C BE AA AE BE 31 21 F7 2C BF 66 E8 E2 29 EA C2 99 FE 72 B6 CE EF 45 7E BA 08 90 29 61 9E 03 95 BB 60 98 51 84 9D D6 21 45 89 A2 CE BA 4F 7A 7D CC [ Another 129 bytes skipped 1 INTEGER 65537 06 8A 83 GF 3c 85 21 38 AC 4D 55 C3 @A 99 01 31 B6 BC 59 31 99 DF 19 CE 29 21 94 64 £6 57 07 95 ca F2 30 FO ssosiss 2 @ warnings, @ errors. The three choices are explained belaw in more detail | would encourage youto pin the subjectPubLickeyInfo becauseiit has the public parameters (such as (e,n} foran RSApublic key) and contextual information such as an algorithm and OID. The context will help you keep your bearings at times, and the figure to therright shows the add tional information available. Centificate Intps:itcheatshectseries.owasp.orgicheatsheetsPinning_Cheat_Sheethiml 9123/22, 8:49.AM Pinning - OWASP Cheat Sheet Series Centific Sandard — The certificate is easiest o pin. You can fetch the cattificate out of band for the website, have the IT folks email your company certificate to you, use openssl s_client to retrieve the certificate etc. Atruntime, you retrieve the website or server's certificate in the callback. Within the callback, you compare the retrieved certificate with the certificate embedded within the program. If the comparison fails, then fail the method or function. Benefits: + It might be easier to implement than the other methods, especially in languages such as Cocoa/CocoaTouch and OpenSSL. Downsi + If the site rotates its certificate on a regular basis, then your application would need to be updated regularly. For example, Google rotates its certificates, so you will need to update your application about once a month (if it depended on Google services). Pul Key Intps:itcheatshectseries.owasp.orgicheatsheetsPinning_Cheat_Sheethiml 4i8 972322, 649 AM Pinning - OWASP Cheat Sheet Series Public key pinning is more flexible but a little trickier due to the extra steps necessary to extract the public key from a certificate. As with a certificate, the program checks the extracted public key with, its embedded copy of the public key. Benefits: + Itallows access to public key parameters (such as {e,n} for an RSA public key) and contextual information such as an algorithm and OID. + Its more flexible than certificate pinning. Even if the server rotates its certificates, the Underlying public keys (within the certificate) remain static. Downsides: + Its harder to work with keys (versus certificates) since you must extract the key from the certificate. Extraction is a minor inconvenience in Java and .Net, but it's uncomfortable in Cocoa/CocoaTouch and Opensst. + The key is static and may violate key rotation policies. + Its not possible to anonymize the public keys. Hash While the three choices above used DER encoding, its also acceptable to use a hash of the information. In fact, the original sample programs were written using digested certificates and public keys. The samples were changed to allow a programmer to inspect the objects with tools like dumpasni and other ASN.1 decoders. Benefits: + Its convenient to use. A digested certificate fingerprint is often available as a native API for ‘many libraries. + Hashing allows you to anonymize a certificate or public key. This might be important if you application is concerned about leaking information during decompilation and re-engineering, + An organization might want to supply a reserve (or back-up) identity in case the primary identity is compromised. Hashing ensures your adversaries do not see the reserved certificate or public key in advance of its use. In fact, Google's IETF draft websec-key-pinning uses the technique. Downsid + No access to public key parameters nor contextual information such as an algorithm and OID which might be needed in certain use cases. Intps:itcheatshectseries.owasp.orgicheatsheetsPinning_Cheat_Sheethiml 58 972322, 649 AM Pinning - OWASP Cheat Sheet Series Examples of Pinning This section discusses certificate and public key pinning in Android Java, iOS, Net, and OpenSSL. Code has been omtted for brevity, but the key points for the platform are highlighted. Android Since Andioid N, the preferred way for implementing pinning is by leveraging Android's Network. Security Configuration feature, which lets apps customize their network security settings in a safe, declarative configuration file without modifying app code. Toensble pinning, the configuration setting can be used. If devices runninga version of Android that is earlier than N need to be supported, a backport of the Network Security Configuration pinning functionality is available via the Trustit Android library. ‘Altematively you can use methods such as the pinning from OkHTTP in order to set specific pins programmatically, as explained in the OWASP Mobile Security Testing Guide (MST) and the OKHttp documentation, ‘The Android documentation provides an example of how SSI. validation can be customized within the appis code (in order to implement pinning) in the Unknown CA implementation document, However, implementing pinning validation from scratch should be avoided, as implementation mistakes are extremely likely and usualy lead to severe vulnerabilities. Lastly, if you want to validate whether the pinning is successful, please follow instructions from the introduction into testing network communication and the Android specific network testing chapters of the OWASP Mobile Security Testing Guide (MSTG). ios Apple suggests pinning a CA public key by specifying it in Info. plist file under App Transport Security Settings. More details in the artide "Identity Pinning: How to configure server certificates for your app’. Trustkit, an open-source SSL pinning library for 10S and macSis availabk. Itprovides an easy-to- Use API for implementing pinning, andhas been deployed in many apps. Otherwise, more details regardinghaw SSL validation can be customized on iOS (in order to implement pinning) are available in the HTTPS Server Trust Evaluation technical ncte. However, implementing pinning validation from scratch should be avoided, as implementation mistakes are extremely likely and usually lead to severe vulnerabilities. Intps:itcheatshectseries.owasp.orgicheatsheetsPinning_Cheat_Sheethiml 68 972322, 649 AM Pinning - OWASP Cheat Sheet Series Lastly, if you wantto validate whether the pinning is suocessful, please follow instructions from the introduction into testing network communication and the iOS specific network testing chapters of the OWASP Mobile Security Testing Guide (MSTG). Net -Net pinning can be achieved by using ServicePointNanager , An example can be found at the OWASP MSTG. Download the Net sample program, Opensst Pinning can occur at one of two places with OpenSSL. First is the user supplied verifycallback . Second isafter the connection is established via SSL_get_peer_certificate . Either method will allow you to access the peers certificate. ‘Though OpenSSL performs the X509 checks, you must fail the connection and tear down the socket on error. By design, a server that doesnot supplya certificate will resuft in xs09_v_ok with aNULL certificate. To check the result of the customary verification: 1. You must call $si_get_verify. result and verify the retum code is x5e9_V_oK ; 2 You must call ssi_get_peer_certificate and verify the certificate is non-NULL Download: Openssl sample program, Electron electron-sst-pinning, an open-soutce SSL pinning library for Electron based applications. It provides ‘an easy-to-use API for implementing pinning and also provides tool for fetching configuration based onneededhosts. Otherwise, you can validate certificates by yourself using ses. setCertificateVerifyProc(proc). References ‘© OWASP Injection Theory ‘© OWASP Data Validation ‘* OWASP Transport Layer Protection Cheat Sheet Intps:itcheatshectseries.owasp.orgicheatsheetsPinning_Cheat_Sheethiml 78 9123/22, 8:48 AM Pinning - OWASP Cheat Sheet Series OWASP Mobile Security Testing Guide IETF RFC 1421 (PEM Encoding) IETF RFC 4648 (Base16, Base32, and Base64 Encodings) IETE RFC 5280 (Internet X.509, PKIX) IETF RFC 3279 (PKI, X509 Algorithms and CRL Profiles) IETF RFC 4055 (PKI, X509 Additional Algorithms and CRL Profiles) IETF RFC 2246 (TLS 7.0) IETF RFC 4346 (TLS 1.1) IETF RFC 5246 (TLS 1.2) IETF PKCS #1: RSA Cryptography Specifications Version 2.2 Intps:itcheatshectseries.owasp.orgicheatsheetsPinning_Cheat_Sheethiml 88

You might also like