Secure Communication with an Insecure Internet Infrastructure Internet

  • Slides: 46
Download presentation
Secure Communication with an Insecure Internet Infrastructure

Secure Communication with an Insecure Internet Infrastructure

Internet Design Decisions and Security n n n Origin as a small and cooperative

Internet Design Decisions and Security n n n Origin as a small and cooperative network (=> largely trusted infrastructure) Global Addressing (=> every sociopath is your next-door neighbor*) Connection-less datagram service (=> can’t verify source, hard to protect bandwidth) * Dan Geer

Internet Design Decisions and Security n n n Anyone can connect (=> ANYONE can

Internet Design Decisions and Security n n n Anyone can connect (=> ANYONE can connect) Millions of hosts run nearly identical software (=> single exploit can create epidemic) Most Internet users know about as much as Senator Stevens aka “the tubes guy” (=> God help us all…)

Our “Narrow” Focus n Yes: q q n Protecting network resources and limiting connectivity

Our “Narrow” Focus n Yes: q q n Protecting network resources and limiting connectivity (Last time) Creating a “secure channel” for communication (today) No: q Preventing software vulnerabilities & malware, or “social engineering”.

Secure Communication with an Untrusted Infrastructure Bob ISP B ISP D ISP C Alice

Secure Communication with an Untrusted Infrastructure Bob ISP B ISP D ISP C Alice ISP A

Secure Communication with an Untrusted Infrastructure Mallory ISP B ISP D ISP C Alice

Secure Communication with an Untrusted Infrastructure Mallory ISP B ISP D ISP C Alice ISP A Bob

Secure Communication with an Untrusted Infrastructure ISP B ISP D ISP C Alice ISP

Secure Communication with an Untrusted Infrastructure ISP B ISP D ISP C Alice ISP A Hello, I’m “Bob”

What do we need for a secure communication channel? n Authentication (Who am I

What do we need for a secure communication channel? n Authentication (Who am I talking to? ) n Confidentiality (Is my data hidden? ) n Integrity (Has my data been modified? ) n Availability (Can I reach the destination? )

What is cryptography? "cryptography is about communication in the presence of adversaries. " -

What is cryptography? "cryptography is about communication in the presence of adversaries. " - Ron Rivest “cryptography is using math and other crazy tricks to approximate magic” - Unknown 441 TA

What is cryptography? Tools to help us build secure communication channels that provide: 1)

What is cryptography? Tools to help us build secure communication channels that provide: 1) Authentication 2) Integrity 3) Confidentiality

Cryptography As a Tool n n Using cryptography securely is not simple Designing cryptographic

Cryptography As a Tool n n Using cryptography securely is not simple Designing cryptographic schemes correctly is near impossible. Today we want to give you an idea of what can be done with cryptography. Take a security course if you think you may use it in the future (e. g. 18 -487)

The Great Divide Symmetric Crypto (Private key) (E. g. , AES) Asymmetric Crypto (Public

The Great Divide Symmetric Crypto (Private key) (E. g. , AES) Asymmetric Crypto (Public key) (E. g. , RSA) Shared secret between parties? Yes No Speed of crypto operations Fast Slow

Symmetric Key: Confidentiality Motivating Example: You and a friend share a key K of

Symmetric Key: Confidentiality Motivating Example: You and a friend share a key K of L random bits, and want to secretly share message M also L bits long. Scheme: You send her the xor(M, K) and then she “decrypts” using xor(M, K) again. 1) Do you get the right message to your friend? 2) Can an adversary recover the message M? 3) Can adversary recover the key K?

Symmetric Key: Confidentiality n One-time Pad (OTP) is secure but usually impactical q q

Symmetric Key: Confidentiality n One-time Pad (OTP) is secure but usually impactical q q Key is as long at the message Keys cannot be reused (why? ) In practice, two types of ciphers are used that require constant length keys: Stream Ciphers: Block Ciphers: Ex: RC 4, A 5 Ex: DES, AES, Blowfish

Symmetric Key: Confidentiality n Stream Ciphers (ex: RC 4) Alice: PRNG K A-B Pseudo-Random

Symmetric Key: Confidentiality n Stream Ciphers (ex: RC 4) Alice: PRNG K A-B Pseudo-Random stream of L bits XOR Message of Length L bits = Encrypted Ciphertext Bob uses KA-B as PRNG seed, and XORs encrypted text to get the message back (just like OTP).

Symmetric Key: Confidentiality n Block Ciphers (ex: AES) Block 1 Block 2 Block 3

Symmetric Key: Confidentiality n Block Ciphers (ex: AES) Block 1 Block 2 Block 3 Round #1 (fixed block size, e. g. 128 bits) Block 4 Round #2 Round #n Alice: K A-B Block 1 Block 2 Block 3 Block 4 Bob breaks the ciphertext into blocks, feeds it through decryption engine using KA-B to recover the message.

Cryptographic Hash Functions n Consistent hash(X) always yields same result n One-way given Y,

Cryptographic Hash Functions n Consistent hash(X) always yields same result n One-way given Y, can’t find X s. t. hash(X) = Y n Collision resistant given hash(W) = Z, can’t find X such that hash(X) = Z Message of arbitrary length Hash Fn Fixed Size Hash

Symmetric Key: Integrity n Hash Message Authentication Code (HMAC) Step #1: Message Alice creates

Symmetric Key: Integrity n Hash Message Authentication Code (HMAC) Step #1: Message Alice creates MAC Hash Fn MAC K A-B Step #2 Alice Transmits Message & MAC Message Step #3 Bob computes MAC with message and KA-B to verify. Why is this secure? How do properties of a hash function help us?

Symmetric Key: Authentication n You already know how to do this! (hint: think about

Symmetric Key: Authentication n You already know how to do this! (hint: think about how we showed integrity) I am Bob Hash Fn A 43 FF 234 K A-B whoops! Alice receives the hash, computes a hash with KA-B , and she knows the sender is Bob

Symmetric Key: Authentication What if Mallory overhears the hash sent by Bob, and then

Symmetric Key: Authentication What if Mallory overhears the hash sent by Bob, and then “replays” it later? ISP B ISP D ISP C ISP A A 43 FF 234 Hello, I’m Bob. Here’s the hash to “prove” it

Symmetric Key: Authentication n A “Nonce” q A random bitstring used only once. Alice

Symmetric Key: Authentication n A “Nonce” q A random bitstring used only once. Alice sends nonce to Bob as a “challenge”. Bob Replies with “fresh” MAC result. Nonce Bob Alice Nonce Performs same hash with KA-B and compares results B 4 FE 64 K A-B Hash B 4 FE 64

Symmetric Key: Authentication n A “Nonce” q A random bitstring used only once. Alice

Symmetric Key: Authentication n A “Nonce” q A random bitstring used only once. Alice sends nonce to Bob as a “challenge”. Bob Replies with “fresh” MAC result. Nonce Alice ? !? ! Mallory If Alice sends Mallory a nonce, she cannot compute the corresponding MAC without K A-B

Symmetric Key Crypto Review n n n Confidentiality: Stream & Block Ciphers Integrity: HMAC

Symmetric Key Crypto Review n n n Confidentiality: Stream & Block Ciphers Integrity: HMAC Authentication: HMAC and Nonce Questions? ? Are we done? Not Really: 1) Number of keys scales as O(n 2) 2) How to securely share keys in the first place?

Diffie-Hellman key exchange n n n An early (1976) way to create a shared

Diffie-Hellman key exchange n n n An early (1976) way to create a shared secret. Everyone knows a prime, p, and a generator, g. Alice and Bob want to share a secret, but only have internet to communicate over.

DH key exchange Everyone: large prime p and generator g Create secret: a Send

DH key exchange Everyone: large prime p and generator g Create secret: a Send Bob: ga mod p Alice Create secret: b Send Alice: gb mod p Compute: (gb mod p)a Bob Compute: (ga mod p)b Voila: They both know gab which is secret!

DH key exchange & Man-In-The. Middle ga mod p gc mod p gb mod

DH key exchange & Man-In-The. Middle ga mod p gc mod p gb mod p

Asymmetric Key Crypto: n Instead of shared keys, each person has a “key pair”

Asymmetric Key Crypto: n Instead of shared keys, each person has a “key pair” KB Bob’s public key KB-1 Bob’s private key n The keys are inverses, so: KB-1 (KB (m)) = m

Asymmetric Key Crypto: n It is believed to be computationally unfeasible to derive KB-1

Asymmetric Key Crypto: n It is believed to be computationally unfeasible to derive KB-1 from KB or to find any way to get M from KB(M) other than using KB-1. => KB can safely be made public. Note: We will not explain the computation that KB(m) entails, but rather treat these functions as black boxes with the desired properties.

Asymmetric Key: Confidentiality KB Bob’s public key Bob’s private KB-1 key encryption algorithm ciphertext

Asymmetric Key: Confidentiality KB Bob’s public key Bob’s private KB-1 key encryption algorithm ciphertext KB (m) decryption algorithm plaintext message m = KB-1 (KB (m))

Asymmetric Key: Sign & Verify If we are given a message M, and a

Asymmetric Key: Sign & Verify If we are given a message M, and a value S such that KB(S) = M, what can we conclude? n n The message must be from Bob, because it must be the case that S = KB-1(M), and only Bob has KB-1 ! n This gives us two primitives: n n Sign (M) = KB-1(M) = Signature S Verify (S, M) = test( KB(S) == M )

Asymmetric Key: Integrity & Authentication n We can use Sign() and Verify() in a

Asymmetric Key: Integrity & Authentication n We can use Sign() and Verify() in a similar manner as our HMAC in symmetric schemes. S = Sign(M) Integrity: Message M Receiver must only check Verify(M, S) Authentication: Nonce S = Sign(Nonce) Verify(Nonce, S)

Asymmetric Key Review: n n n Confidentiality: Encrypt with Public Key of Receiver Integrity:

Asymmetric Key Review: n n n Confidentiality: Encrypt with Public Key of Receiver Integrity: Sign message with private key of the sender Authentication: Entity being authenticated signs a nonce with private key, signature is then verified with the public key But, these operations are computationally expensive*

One last “little detail”… How do I get these keys in the first place?

One last “little detail”… How do I get these keys in the first place? ? Remember: n n Symmetric key primitives assumed Alice and Bob had already shared a key. Asymmetric key primitives assumed Alice knew Bob’s public key. This may work with friends, but when was the last time you saw Amazon. com walking down the street?

Symmetric Key Distribution n How does Andrew do this? Andrew Uses Kerberos, which relies

Symmetric Key Distribution n How does Andrew do this? Andrew Uses Kerberos, which relies on a Key Distribution Center (KDC) to establish shared symmetric keys.

Key Distribution Center (KDC) n n n Alice, Bob need shared symmetric key. KDC:

Key Distribution Center (KDC) n n n Alice, Bob need shared symmetric key. KDC: server shares different secret key with each registered user (many users) Alice, Bob know own symmetric keys, KA-KDC KB-KDC , for communicating with KDC KP-KDC KB-KDC KA-KDCKP-KDC KX-KDC KY-KDC KB-KDC KZ-KDC

Key Distribution Center (KDC) Q: How does KDC allow Bob, Alice to determine shared

Key Distribution Center (KDC) Q: How does KDC allow Bob, Alice to determine shared symmetric secret key to communicate with each other? KDC generates R 1 KA-KDC(A, B) Alice knows R 1 KA-KDC(R 1, KB-KDC(A, R 1) ) Bob knows to KB-KDC(A, R 1) use R 1 to communicate with Alice and Bob communicate: using R 1 as session key for shared symmetric encryption

How Useful is a KDC? n n n Must always be online to support

How Useful is a KDC? n n n Must always be online to support secure communication KDC can expose our session keys to others! Centralized trust and point of failure. In practice, the KDC model is mostly used within single organizations (e. g. Kerberos) but not more widely.

Certification Authorities n n Certification authority (CA): binds public key to particular entity, E.

Certification Authorities n n Certification authority (CA): binds public key to particular entity, E. An entity E registers its public key with CA. q q q E provides “proof of identity” to CA. CA creates certificate binding E to its public key. Certificate contains E’s public key AND the CA’s signature of E’s public key. Bob’s public key Bob’s identifying information KB CA generates S = Sign(KB) CA private key K-1 CA KB certificate = Bob’s public key and signature by CA

Certification Authorities n When Alice wants Bob’s public key: q q KB Gets Bob’s

Certification Authorities n When Alice wants Bob’s public key: q q KB Gets Bob’s certificate (Bob or elsewhere). Use CA’s public key to verify the signature within Bob’s certificate, then accepts public key If signature is valid, use KB Verify(S, KB) CA public key KCA

Certificate Contents n info algorithm and key value itself (not shown) n n Cert

Certificate Contents n info algorithm and key value itself (not shown) n n Cert owner Cert issuer Valid dates Fingerprint of signature

Which Authority Should You Trust? Today: many authorities What about a shared Public Key

Which Authority Should You Trust? Today: many authorities What about a shared Public Key Infrastructure (PKI)? n n q q A system in which “roots of trust” authoritatively bind public keys to real-world identities So far it has not been very successful

Transport Layer Security (TLS) aka Secure Socket Layer (SSL) n Used for protocols like

Transport Layer Security (TLS) aka Secure Socket Layer (SSL) n Used for protocols like HTTPS n Special TLS socket layer between application and TCP (small changes to application). n Handles confidentiality, integrity, and authentication. n Uses “hybrid” cryptography.

Setup Channel with TLS “Handshake” Handshake Steps: 1) Client and server negotiate exact cryptographic

Setup Channel with TLS “Handshake” Handshake Steps: 1) Client and server negotiate exact cryptographic protocols 2) Client validates public key certificate with CA public key. 3) Client encrypts secret random value with server’s key, and sends it as a challenge. 4) Server decrypts, proving it has the corresponding private key. 5) This value is used to derive symmetric session keys for encryption & MACs.

How TLS Handles Data 1) Data arrives as a stream from the application via

How TLS Handles Data 1) Data arrives as a stream from the application via the TLS Socket 2) The data is segmented by TLS into chunks 3) A session key is used to encrypt and MAC each chunk to form a TLS “record”, which includes a short header and data that is encrypted, as well as a MAC. 4) Records form a byte stream that is fed to a TCP socket for transmission.

What to take home? n n Internet design and growth => security challenges Symmetric

What to take home? n n Internet design and growth => security challenges Symmetric (pre-shared key, fast) and asymmetric (key pairs, slow) primitives provide: n n n Confidentiality Integrity Authentication “Hybrid Encryption” leverages strengths of both. Great complexity exists in securely acquiring keys. Crypto is hard to get right, so use tools from others, don’t design your own (e. g. TLS).

Resources n Textbook: 8. 1 – 8. 3 n Wikipedia for overview of Symmetric/Asymmetric

Resources n Textbook: 8. 1 – 8. 3 n Wikipedia for overview of Symmetric/Asymmetric primitives and Hash functions. n Open. SSL (www. openssl. org): top-rate open source code for SSL and primitive functions. n “Handbook of Applied Cryptography” available free online: www. cacr. math. uwaterloo. ca/hac/