Presentation is loading. Please wait.

Presentation is loading. Please wait.

Computer and Information Security Chapter 10 Real-World Security Protocols 1.

Similar presentations


Presentation on theme: "Computer and Information Security Chapter 10 Real-World Security Protocols 1."— Presentation transcript:

1

2 Computer and Information Security Chapter 10 Real-World Security Protocols 1

3 Chapter 10: Real-World Protocols The wire protocol guys don't worry about security because that's really a network protocol problem. The network protocol guys don't worry about it because, really, it's an application problem. The application guys don't worry about it because, after all, they can just use the IP address and trust the network.  Marcus J. Ranum In the real world, nothing happens at the right place at the right time. It is the job of journalists and historians to correct that.  Mark Twain Part 2  Access Control 2

4 Part 3  Protocols 3 Real-World Protocols Next, we look at real protocols –SSH  a simple & useful security protocol –SSL  practical security on the Web –IPSec  security at the IP layer –Kerberos  symmetric key, single sign-on –WEP  “Swiss cheese” of security protocols –GSM  mobile phone (in)security

5 Secure Shell (SSH) Part 3  Protocols 4

6 SSH Creates a “secure tunnel” Insecure command sent thru SSH tunnel are then secure SSH used with things like rlogin –Why is rlogin insecure without SSH? –Why is rlogin secure with SSH? SSH is a relatively simple protocol Part 3  Protocols 5

7 SSH SSH authentication can be based on: –Public keys, or –Digital certificates, or –Passwords Here, we consider certificate mode –Other modes, see homework problems We consider slightly simplified SSH… Part 3  Protocols 6

8 SSH and Tunneling 7 A “tunnel” is created by encapsulating one packet or protocol within another one. https://en.wikipedia.org/wiki/Tunneling_protocol https://en.wikipedia.org/wiki/Tunneling_protocol https://commons.wikimedia.org/wiki/File:Reverse_ssh_tunnel.jpg#/media/File:Reverse_ssh_tunnel.jpg

9 Simplified SSH CP = “crypto proposed”, and CS = “crypto selected” H = h(Alice,Bob,CP,CS,R A,R B,g a mod p,g b mod p,g ab mod p) S B = [H] Bob S A = [H, Alice, certificate A ] Alice K = g ab mod p Part 3  Protocols 8 Alice Bob Alice, CP, R A CS, R B g a mod p g b mod p, certificate B, S B E(Alice, certificate A, S A, K)

10 MiM Attack on SSH? Where does this attack fail? Alice computes: –H a = h(Alice,Bob,CP,CS,R A,R B,g a mod p,g t mod p,g at mod p) But Bob signs: –H b = h(Alice,Bob,CP,CS,R A,R B,g t mod p,g b mod p,g bt mod p) Part 3  Protocols 9 Alice Bob Alice, R A RBRB g a mod p g b mod p, cert B, S B E(Alice,cert A,S A,K) Alice, R A RBRB g t mod p g t mod p, cert B, S B E(Alice,cert A,S A,K ) Trudy

11 Part 3  Protocols 10 Secure Socket Layer

12 Part 3  Protocols 11 Socket layer “Socket layer” lives between application and transport layers SSL usually between HTTP and TCP application transport network link physical Socket “layer” OS User NIC

13 Part 3  Protocols 12 What is SSL? SSL is the protocol used for majority of secure transactions on the Internet For example, if you want to buy a book at amazon.com… –You want to be sure you are dealing with Amazon (authentication) –Your credit card information must be protected in transit (confidentiality and/or integrity) –As long as you have money, Amazon does not care who you are –So, no need for mutual authentication

14 13 https://www.digicert.com/ssl.htm

15 SSL Encrypting/decrypting with public/private keys are used during the handshake and the session key is used after that. 1.Browser connects to a web server (website) secured with SSL (https). Browser requests that the server identify itself. 2.Server sends its SSL Certificate, including the server’s public key. 3.Browser checks the certificate a list of trusted CAs and sends back a symmetric session key using the server’s public key. 4.Server decrypts the symmetric session key using its private key and sends back an acknowledgement encrypted with the session key to start the encrypted session. 5.Server and Browser now encrypt all transmitted data with the session key. https://www.digicert.com/ssl.htm 14

16 Part 3  Protocols 15 Simple SSL-like Protocol Alice Bob I’d like to talk to you securely Here’s my certificate {K} Bob protected HTTP Is Alice sure she’s talking to Bob? Is Bob sure he’s talking to Alice?

17 Part 3  Protocols 16 Simplified SSL Protocol Alice Bob Can we talk?, cipher list, R A certificate, cipher, R B {S} Bob, E(h(msgs,CLNT,K),K) Data protected with key K h(msgs,SRVR,K) S is known as pre-master secret K = h(S,R A,R B ) “ msgs ” means all previous messages CLNT and SRVR are constants

18 Part 3  Protocols 17 SSL Keys 6 “keys” derived from K = h(S,R A,R B ) –2 encryption keys: send and receive –2 integrity keys: send and receive –2 IVs: send and receive –Why different keys in each direction? Q: Why is h(msgs,CLNT,K) encrypted? A: Apparently, it adds no security…

19 Part 3  Protocols 18 SSL Authentication Alice authenticates Bob, not vice-versa –How does client authenticate server? –Why would server not authenticate client? Mutual authentication is possible: Bob sends certificate request in message 2 –Then client must have a valid certificate –But, if server wants to authenticate client, server could instead require password

20 Part 3  Protocols 19 SSL MiM Attack? Alice Bob RARA certificate T, R B {S 1 } Trudy,E(X 1,K 1 ) E(data,K 1 ) h(Y 1,K 1 ) Q: What prevents this MiM “attack”? A: Bob’s certificate must be signed by a certificate authority (CA) What does browser do if signature not valid? What does user do when browser complains? Trudy RARA certificate B, R B {S 2 } Bob,E(X 2,K 2 ) E(data,K 2 ) h(Y 2,K 2 )

21 Part 3  Protocols 20 SSL Sessions vs Connections SSL session is established as shown on previous slides SSL designed for use with HTTP 1.0 HTTP 1.0 often opens multiple simultaneous (parallel) connections –Multiple connections per session SSL session is costly, public key operations SSL has an efficient protocol for opening new connections given an existing session

22 Part 3  Protocols 21 SSL Connection Alice Bob session-ID, cipher list, R A session-ID, cipher, R B, h(msgs,SRVR,K) h(msgs,CLNT,K) Protected data Assuming SSL session exists So, S is already known to Alice and Bob Both sides must remember session-ID Again, K = h(S,R A,R B )  No public key operations! (relies on known S )

23 Part 3  Protocols 22 SSL vs IPSec IPSec  discussed in next section –Lives at the network layer (part of the OS) –Encryption, integrity, authentication, etc. –Is overly complex, has some security “issues” SSL (and IEEE standard known as TLS) –Lives at socket layer (part of user space) –Encryption, integrity, authentication, etc. –Relatively simple and elegant specification

24 Part 3  Protocols 23 SSL vs IPSec IPSec: OS must be aware, but not apps SSL: Apps must be aware, but not OS SSL built into Web early-on (Netscape) IPSec often used in VPNs (secure tunnel) Reluctance to retrofit applications for SSL IPSec not widely deployed (complexity, etc.) The bottom line… Internet less secure than it should be!

25 Part 3  Protocols 24 IPSec

26 Part 3  Protocols 25 IPSec and SSL IPSec lives at the network layer IPSec is transparent to applications application transport network link physical SSL OS User NIC IPSec

27 Part 3  Protocols 26 IPSec and Complexity IPSec is a complex protocol Over-engineered –Lots of (generally useless) features Flawed –Some significant security issues Interoperability is serious challenge –Defeats the purpose of having a standard! Complex And, did I mention, it’s complex?

28 Part 3  Protocols 27 IKE and ESP/AH Two parts to IPSec IKE: Internet Key Exchange –Mutual authentication –Establish session key –Two “phases”  like SSL session/connection ESP/AH –ESP: Encapsulating Security Payload  for encryption and/or integrity of IP packets –AH: Authentication Header  integrity only

29 Part 3  Protocols 28 IKE

30 Part 3  Protocols 29 IKE IKE has 2 phases –Phase 1  IKE security association (SA) –Phase 2  AH/ESP security association Phase 1 is comparable to SSL session Phase 2 is comparable to SSL connection Not an obvious need for two phases in IKE If multiple Phase 2’s do not occur, then it is more costly to have two phases!

31 Part 3  Protocols 30 IKE Phase 1 Four different “key” options –Public key encryption (original version) –Public key encryption (improved version) –Public key signature –Symmetric key For each of these, two different “modes” –Main mode and aggressive mode There are 8 versions of IKE Phase 1! Need more evidence it’s over-engineered?

32 Part 3  Protocols 31 IKE Phase 1 We discuss 6 of 8 Phase 1 variants –Public key signatures (main & aggressive modes) –Symmetric key (main and aggressive modes) –Public key encryption (main and aggressive) Why public key encryption and public key signatures? –Always know your own private key –May not (initially) know other side’s public key

33 Part 3  Protocols 32 IKE Phase 1 Uses ephemeral Diffie-Hellman to establish session key –Provides perfect forward secrecy (PFS) Let a be Alice’s Diffie-Hellman exponent Let b be Bob’s Diffie-Hellman exponent Let g be generator and p prime Recall that p and g are public

34 Part 3  Protocols 33 IKE Phase 1: Digital Signature (Main Mode) CP = crypto proposed, CS = crypto selected IC = initiator “cookie”, RC = responder “cookie” K = h(IC,RC,g ab mod p,R A,R B ) SKEYID = h(R A, R B, g ab mod p) proof A = [h(SKEYID,g a mod p,g b mod p,IC,RC,CP,“Alice”)] Alice AliceBob IC, CP IC,RC, CS IC,RC, g a mod p, R A IC,RC, E(“Alice”, proof A, K) IC,RC, g b mod p, R B IC,RC, E(“Bob”, proof B, K)

35 Part 3  Protocols 34 IKE Phase 1: Public Key Signature (Aggressive Mode) Main difference from main mode –Not trying to protect identities –Cannot negotiate g or p Alice Bob IC, “Alice”, g a mod p, R A, CP IC,RC, “Bob”, R B, g b mod p, CS, proof B IC,RC, proof A

36 Part 3  Protocols 35 Main vs Aggressive Modes Main mode MUST be implemented Aggressive mode SHOULD be implemented –So, if aggressive mode is not implemented, “you should feel guilty about it” Might create interoperability issues For public key signature authentication –Passive attacker knows identities of Alice and Bob in aggressive mode, but not in main mode –Active attacker can determine Alice’s and Bob’s identity in main mode

37 Part 3  Protocols 36 IKE Phase 1: Symmetric Key (Main Mode) Same as signature mode except –K AB = symmetric key shared in advance –K = h(IC,RC,g ab mod p,R A,R B,K AB ) –SKEYID = h(K, g ab mod p) –proof A = h(SKEYID,g a mod p,g b mod p,IC,RC,CP,“Alice”) Alice K AB Bob K AB IC, CP IC,RC, CS IC,RC, g a mod p, R A IC,RC, E(“Alice”, proof A, K) IC,RC, g b mod p, R B IC,RC, E(“Bob”, proof B, K)

38 Part 3  Protocols 37 Problems with Symmetric Key (Main Mode) Catch-22 –Alice sends her ID in message 5 –Alice’s ID encrypted with K –To find K Bob must know K AB –To get K AB Bob must know he’s talking to Alice! Result: Alice’s ID must be IP address! Useless mode for the “road warrior” Why go to all of the trouble of trying to hide identities in 6 message protocol?

39 Part 3  Protocols 38 IKE Phase 1: Symmetric Key (Aggressive Mode) Same format as digital signature aggressive mode Not trying to hide identities… As a result, does not have problems of main mode But does not (pretend to) hide identities Alice Bob IC, “Alice”, g a mod p, R A, CP IC,RC, “Bob”, R B, g b mod p, CS, proof B IC,RC, proof A

40 Part 3  Protocols 39 IKE Phase 1: Public Key Encryption (Main Mode) CP = crypto proposed, CS = crypto selected IC = initiator “cookie”, RC = responder “cookie” K = h(IC,RC,g ab mod p,R A,R B ) SKEYID = h(R A, R B, g ab mod p) proof A = h(SKEYID,g a mod p,g b mod p,IC,RC,CP,“Alice”) Alice Bob IC, CP IC,RC, CS IC,RC, g a mod p, {R A } Bob, {“Alice”} Bob IC,RC, E(proof A, K) IC,RC, g b mod p, {R B } Alice, {“Bob”} Alice IC,RC, E(proof B, K)

41 Part 3  Protocols 40 IKE Phase 1: Public Key Encryption (Aggressive Mode) K, proof A, proof B computed as in main mode Note that identities are hidden –The only aggressive mode to hide identities –So, why have a main mode? Alice Bob IC, CP, g a mod p, {“Alice”} Bob, {R A } Bob IC,RC, CS, g b mod p, {“Bob”} Alice, {R B } Alice, proof B IC,RC, proof A

42 Part 3  Protocols 41 Public Key Encryption Issue? In public key encryption, aggressive mode… Suppose Trudy generates –Exponents a and b –Nonces R A and R B Trudy can compute “valid” keys and proofs: g ab mod p, K, SKEYID, proof A and proof B This also works in main mode

43 Part 3  Protocols 42 Public Key Encryption Issue? Trudy as Alice Trudy as Bob Trudy can create exchange that appears to be between Alice and Bob Appears valid to any observer, including Alice and Bob! IC,RC, CS, g b mod p, {“Bob”} Alice, {R B } Alice, proof B IC,RC, proof A IC, CP, g a mod p, {“Alice”} Bob, {R A } Bob

44 Part 3  Protocols 43 Plausible Deniability Trudy can create “conversation” that appears to be between Alice and Bob Appears valid, even to Alice and Bob! A security failure? In this IPSec key option, it is a feature… –Plausible deniability: Alice and Bob can deny that any conversation took place! In some cases it might create a problem –E.g., if Alice makes a purchase from Bob, she could later repudiate it (unless she had signed)

45 Part 3  Protocols 44 IKE Phase 1 Cookies IC and RC  cookies (or “anti-clogging tokens”) supposed to prevent DoS attacks –No relation to Web cookies To reduce DoS threats, Bob wants to remain stateless as long as possible But Bob must remember CP from message 1 (required for proof of identity in message 6) Bob must keep state from 1st message on –So, these “cookies” offer little DoS protection

46 Part 3  Protocols 45 IKE Phase 1 Summary Result of IKE phase 1 is –Mutual authentication –Shared symmetric key –IKE Security Association (SA) But phase 1 is expensive –Especially in public key and/or main mode Developers of IKE thought it would be used for lots of things  not just IPSec –Partly explains the over-engineering…

47 Part 3  Protocols 46 IKE Phase 2 Phase 1 establishes IKE SA Phase 2 establishes IPSec SA Comparison to SSL –SSL session is comparable to IKE Phase 1 –SSL connections are like IKE Phase 2 IKE could be used for lots of things… …but in practice, it’s not!

48 Part 3  Protocols 47 IKE Phase 2 Key K, IC, RC and SA known from Phase 1 Proposal CP includes ESP and/or AH Hashes 1,2,3 depend on SKEYID, SA, R A and R B Keys derived from KEYMAT = h(SKEYID,R A,R B,junk) Recall SKEYID depends on phase 1 key method Optional PFS (ephemeral Diffie-Hellman exchange) Alice Bob IC,RC,CP,E(hash1,SA,R A,K) IC,RC,CS,E(hash2,SA,R B,K) IC,RC,E(hash3,K)

49 Part 3  Protocols 48 IPSec After IKE Phase 1, we have an IKE SA After IKE Phase 2, we have an IPSec SA Both sides have a shared symmetric key Now what? –We want to protect IP datagrams But what is an IP datagram? –Considered from the perspective of IPSec…

50 Part 3  Protocols 49 IP Review Where IP header is IP header data  IP datagram is of the form

51 Part 3  Protocols 50 IP and TCP Consider Web traffic –IP encapsulates TCP and… –…TCP encapsulates HTTP IP headerTCP hdrHTTP hdrapp data IP header data  IP data includes TCP header, etc.

52 Part 3  Protocols 51 IPSec Transport Mode IP header data IP headerESP/AH data  Transport mode designed for host-to-host  Transport mode is efficient o Adds minimal amount of extra header  The original header remains o Passive attacker can see who is talking

53 IPSec: Host-to-Host IPSec transport mode Part 3  Protocols 52  There may be firewalls in between o If so, is that a problem?

54 Part 3  Protocols 53 IPSec Tunnel Mode  IPSec Tunnel Mode IP header data new IP hdrESP/AH IP header data  Tunnel mode for firewall-to-firewall traffic  Original IP packet encapsulated in IPSec  Original IP header not visible to attacker o New IP header from firewall to firewall o Attacker does not know which hosts are talking

55 IPSec: Firewall-to-Firewall IPSec tunnel mode Part 3  Protocols 54  Local networks not protected  Is there any advantage here?

56 Part 3  Protocols 55 Comparison of IPSec Modes Transport Mode Tunnel Mode IP header data IP headerESP/AH data IP header data new IP hdrESP/AH IP header data  Transport Mode o Host-to-host  Tunnel Mode o Firewall-to-firewall  Transport Mode not necessary…  …but it’s more efficient

57 Part 3  Protocols 56 IPSec Security What kind of protection? –Confidentiality? –Integrity? –Both? What to protect? –Data? –Header? –Both? ESP/AH do some combinations of these

58 Part 3  Protocols 57 AH vs ESP AH  Authentication Header –Integrity only (no confidentiality) –Integrity-protect everything beyond IP header and some fields of header (why not all fields?) ESP  Encapsulating Security Payload –Integrity and confidentiality both required –Protects everything beyond IP header –Integrity-only by using NULL encryptionNULL encryption

59 Part 3  Protocols 58 ESP’s NULL Encryption According to RFC 2410 –NULL encryption “is a block cipher the origins of which appear to be lost in antiquity” –“Despite rumors”, there is no evidence that NSA “suppressed publication of this algorithm” –Evidence suggests it was developed in Roman times as exportable version of Caesar’s cipher –Can make use of keys of varying length –No IV is required –Null(P,K) = P for any P and any key K Bottom line: Security people can be strange

60 Part 3  Protocols 59 Why Does AH Exist? (1) Cannot encrypt IP header –Routers must look at the IP header –IP addresses, TTL, etc. –IP header exists to route packets! AH protects immutable fields in IP header –Cannot integrity protect all header fields –TTL, for example, will change ESP does not protect IP header at all

61 Part 3  Protocols 60 Why Does AH Exist? (2) ESP encrypts everything beyond the IP header (if non-null encryption) If ESP-encrypted, firewall cannot look at TCP header (e.g., port numbers) Why not use ESP with NULL encryption? –Firewall sees ESP header, but does not know whether null encryption is used –End systems know, but not the firewalls

62 Part 3  Protocols 61 Why Does AH Exist? (3) The real reason why AH exists: –At one IETF meeting “someone from Microsoft gave an impassioned speech about how AH was useless…” –“…everyone in the room looked around and said `Hmm. He’s right, and we hate AH also, but if it annoys Microsoft let’s leave it in since we hate Microsoft more than we hate AH.’ ”

63 Part 3  Protocols 62 Kerberos

64 63 KERBEROS In Greek mythology, a many headed dog, the guardian of the entrance of Hades

65 Part 3  Protocols 64 Kerberos In Greek mythology, Kerberos is 3-headed dog that guards entrance to Hades –“Wouldn’t it make more sense to guard the exit?” In security, Kerberos is an authentication protocol based on symmetric key crypto –Originated at MIT –Based on work by Needham and Schroeder –Relies on a Trusted Third Party (TTP)

66 65 Kerberos Kerberos is a computer network authentication protocol which allows individuals communicating over an insecure network to prove their identity to one another in a secure manner. Kerberos prevents eavesdropping or replay attacks, and ensures the integrity of the data.

67 66 KERBEROS Instead of authentication protocols at each server, provides a centralized authentication server to authenticate users to servers and servers to users. Relies on conventional encryption, making no use of public-key encryption Two versions: version 4 and 5 Version 4 makes use of DES

68 67 Kerberos Uses symmetric key cryptography (DES) Requires a trusted third party, called a Key Distribution Center (KDC) –Authentication Server (AS) –Ticket Granting Server (TGS) Based on “tickets” to prove the identity of users

69 68 Original requirements desired of Kerberos Secure against eavesdropping and authentication Reliable –Important because Kerberos is the only link between users and servers Transparent –User only enters password; everything else is unknown to him Scalable –Should work for large number of networked computers

70 69 KERBEROS Users wish to access services on servers. Three threats exist: –User pretends to be another user. –User alters the network address of a workstation. –User eavesdrops on exchanges and uses a replay attack.

71 70 Users Servers ? How do users prove their identities when requesting services from machines on the network? Kerberos

72 71 User Servers User requests ticket for some service; proves his identity User receives ticket Ticket is used to access desired network service Knows all users’ and servers’ passwords Kerberos

73 72 A More Secure Authentication Dialogue In the previous one –Password sent in clear text –Minimize no of times reentering a password For the same service (e.g. to check email repeatedly) For different services (e.g. email, file, printing)

74 73 The improved protocol: with TGS Encrypted TGS ticket Joe the User Authentication server (AS) USER=Joe; service=TGS File server, printer, other network services Encrypted service ticket Ticket granting service (TGS ) TGS ticket Encrypted service ticket Key distribution center (KDC)

75 74 The new additions New service: TGS (Ticket Granting Service) Ticket TGS is the Ticket Granting Ticket Why is the timestamp present in Ticket TGS ? Access to any service after steps 3 and 4 New scenario satisfies only one password per user session and user password protection

76 75 Kerberos Keys K c is long-term key of client C –Derived from user’s password –Known to C and key distribution center KDC K TGS is long-term key of ticket granting service TGS –Known to KDC and TGS K v is long-term key of network service V –Known to V and TGS; separate key for each service K c,TGS is short-term key between C and TGS –Created by KDC, known to C and TGS K c,v is short-term key between C and V –Created by TGS, known to C and V

77 76 Ticket parameters Ticket TGS = E Ktgs [ IDc || ADc || IDtgs || TS1 || Lifetime1 ] Ticket v = E KV [ IDc || ADc || IDv || TS2 || Lifetime2 ]

78 77 Overview of Kerberos

79 78 Kerberos V4: Piece by piece Step a: “Single logon” authentication User kinit program (client) Key Distribution Center (KDC) password ID c, ID TGS, time c Encrypt K c (K c,TGS, ID TGS, time KDC, lifetime, ticket TGS ) KcKc Convert into client master key Key = K c Key = K TGS TGS … All users must pre-register their passwords with KDC Fresh key to be used between client and TGS Decrypts with K c and obtains K c,TGS and ticket TGS Encrypt K TGS (K c,TGS, ID c, Addr c, ID TGS, time KDC, lifetime) Client will use this unforgeable ticket to get other tickets without re-authenticating

80 79 Step b: Obtaining a service ticket Client uses TGS ticket to obtain a service ticket and a short-term key for each network service –One encrypted, unforgeable ticket per service (printer, email, etc.) User Client Ticket Granting Service (TGS) usually lives inside KDC System command, e.g. “lpr – Pprint” ID v, ticket TGS, auth C Encrypt K c,TGS (K c,v, ID v, time TGS, ticket v ) Fresh key to be used between client and service Knows K c,TGS and ticket TGS Encrypt K c,TGS (ID c, Addr c, time c ) Proves that client knows key K c,TGS contained in encrypted TGS ticket Encrypt K v (K c,v, ID c, Addr c, ID v, time TGS, lifetime) Client will use this unforgeable ticket to get access to service V Knows key K v for each service

81 80 Step c: Obtaining service When requesting a service from an application server, client uses the short term key and ticket that he obtained from TGS for that service User Client Server V System command, e.g. “lpr – Pprint” ticket v, auth C Encrypt K c,v (time c +1) Knows K c,v and ticket v Encrypt K c,v (ID c, Addr c, time c ) Proves that client knows key K c,v contained in encrypted ticket Authenticates server to client Reasoning: Server can produce this message only if he knows key K c,v. Server can learn key K c,v only if he can decrypt service ticket. Server can decrypt service ticket only if he knows correct key K v. If server knows correct key K v, then he is the right server.

82 81 Kerberos Realms and Multiple Kerberi Full-service Kerberos environment requires that –The Kerberos server have UID + Hash( Passwd(UID) ) for all users –A secret key K kerberos,server that is shared with each server This environment is referred to as a realm Two realms can interoperate with a shared key –Of course, they should trust each other Why would two realms need to interoperate in the fist place?

83 82 Request for Service in Another Realm

84 83 Realms continued… Vrem (ticket presented to remote server) indicates the original realm to which user was authenticated The interoperation doesn’t scale well –n(n-1)/2 secure key exchanges for interoperation amongst n realms

85 84 Kerberos Version 5 Improvements over Version 4 –Environmental shortcomings –Technical deficiencies Environmental short comings –Encryption system dependence –V4 used only DES; V5 uses encryption tag identifiers for any encryption technique to be used

86 85 V5 and V4 comparison continued… Internet protocol dependence –V4 requires IP address –V5 allows any network address type (using tags) Message byte ordering –In V4, sender chooses its own byte ordering –V5 is more structured and uses ASN.1 and BER (Basic Encoding rules)

87 86 V5 and V4 comparison continued… Ticket lifetime –Less in V4 (only 1280 minutes max) –Some applications need longer time –V5 has arbitrary life times (specify start and end times) Authentication forwarding –A server might need to access another server on behalf of a client (such as a print server to a file server) –V5 has this capability but not V4

88 87 V5 and V4 comparison continued… Interaction authentication –V4 requires key exchanges in the order of N 2 –V5 needs fewer relationships

89 88 Difference Between Version 4 and 5 Summarized Encryption system dependence (V.4 DES) Internet protocol dependence Message byte ordering Ticket lifetime Authentication forwarding Inter-realm authentication

90 89 Technical deficiencies in V4 corrected in V5 Double encryption –Messages 2 and 4 in V4 have tickets encrypted twice. The second one is wasteful PCBC encryption –V4 uses a non-standard version of DES called PCBC (for integrity checks). –It is vulnerable to attacks involving interchange of cipher text blocks

91 Part 3  Protocols 90 Motivation for Kerberos Authentication using public keys –N users  N key pairs Authentication using symmetric keys –N users requires (on the order of) N 2 keys Symmetric key case does not scale Kerberos based on symmetric keys but only requires N keys for N users -Security depends on TTP (trusted third party) +No PKI (public key infrastructure) is needed

92 Part 3  Protocols 91 Kerberos KDC Kerberos Key Distribution Center or KDC –KDC acts as the TTP –TTP is trusted, so it must not be compromised KDC shares symmetric key K A with Alice, key K B with Bob, key K C with Carol, etc. And a master key K KDC known only to KDC KDC enables authentication, session keys –Session key for confidentiality and integrity In practice, crypto algorithm is DES

93 Part 3  Protocols 92 Kerberos Tickets KDC issue tickets containing info needed to access network resources KDC also issues Ticket-Granting Tickets or TGT s that are used to obtain tickets Each TGT contains –Session key –User’s ID –Expiration time Every TGT is encrypted with K KDC –So, TGT can only be read by the KDC

94 Part 3  Protocols 93 Kerberized Login Alice enters her password Then Alice’s computer does following: –Derives K A from Alice’s password –Uses K A to get TGT for Alice from KDC Alice then uses her TGT (credentials) to securely access network resources Plus: Security is transparent to Alice Minus: KDC must be secure  it’s trusted!

95 Part 3  Protocols 94 Kerberized Login Alice Alice’s Alice wants password a TGT E(S A,TGT,K A ) KDC Key K A = h( Alice’s password ) KDC creates session key S A Alice’s computer decrypts S A and TGT –Then it forgets K A TGT = E(“Alice”, S A, K KDC ) Computer

96 Part 3  Protocols 95 Alice Requests “Ticket to Bob” Alice Talk to Bob I want to talk to Bob REQUEST REPLY KDC REQUEST = (TGT, authenticator) –authenticator = E(timestamp, S A ) REPLY = E(“Bob”, K AB, ticket to Bob, S A ) –ticket to Bob = E(“Alice”, K AB, K B ) KDC gets S A from TGT to verify timestamp Computer

97 Part 3  Protocols 96 Alice Uses Ticket to Bob ticket to Bob, authenticator E(timestamp + 1, K AB ) ticket to Bob = E(“Alice”, K AB, K B ) authenticator = E(timestamp, K AB ) Bob decrypts “ticket to Bob” to get K AB which he then uses to verify timestamp Alice’s Computer Bob

98 Part 3  Protocols 97 Kerberos Key S A used in authentication –For confidentiality/integrity Timestamps for authentication and replay protection Recall, that timestamps… –Reduce the number of messages - like a nonce that is known in advance –But, “time” is a security-critical parameter

99 Part 3  Protocols 98 Kerberos Questions When Alice logs in, KDC sends E(S A, TGT, K A ) where TGT = E(“Alice”, S A, K KDC ) Q: Why is TGT encrypted with K A ? A: Extra work for no added security! In Alice’s “Kerberized” login to Bob, why can Alice remain anonymous? Why is “ticket to Bob” sent to Alice? –Why doesn’t KDC send it directly to Bob?

100 Part 3  Protocols 99 Kerberos Alternatives Could have Alice’s computer remember password and use that for authentication –Then no KDC required –But hard to protect passwords –Also, does not scale Could have KDC remember session key instead of putting it in a TGT –Then no need for TGT –But stateless KDC is major feature of Kerberos

101 Part 3  Protocols 100 Kerberos Keys In Kerberos, K A = h(Alice’s password) Could instead generate random K A –Compute K h = h(Alice’s password) –And Alice’s computer stores E(K A, K h ) Then K A need not change when Alice changes her password –But E(K A, K h ) must be stored on computer This alternative approach is often used –But not in Kerberos

102 WEP Part 3  Protocols 101

103 WEP WEP  Wired Equivalent Privacy The stated goal of WEP is to make wireless LAN as secure as a wired LAN According to Tanenbaum: –“The 802.11 standard prescribes a data link- level security protocol called WEP (Wired Equivalent Privacy), which is designed to make the security of a wireless LAN as good as that of a wired LAN. Since the default for a wired LAN is no security at all, this goal is easy to achieve, and WEP achieves it as we shall see.” Part 3  Protocols 102

104 WEP Issues WEP uses RC4 cipher for confidentiality –RC4 is considered a strong cipher –But WEP introduces a subtle flaw… –…making cryptanalytic attacks feasible WEP uses CRC for “integrity” –Should have used a MAC or HMAC instead –CRC is for error detection, not crypto integrity –Everyone knows NOT to use CRC for this… Part 3  Protocols 103

105 WEP Integrity Problems WEP “integrity” gives no crypto integrity –CRC is linear, so is stream cipher (XOR) –Trudy can change ciphertext and CRC so that checksum remains correct –Then Trudy’s introduced errors go undetected –Requires no knowledge of the plaintext! CRC does not provide a cryptographic integrity check –CRC designed to detect random errors –Not able to detect intelligent changes Part 3  Protocols 104

106 More WEP Integrity Issues Suppose Trudy knows destination IP Then Trudy also knows keystream used to encrypt IP address, since… –… C = destination IP address  keystream Then Trudy can replace C with… –… C = Trudy’s IP address  keystream And change the CRC so no error detected! –Then what happens?? Moral: Big problem when integrity fails Part 3  Protocols 105

107 WEP Key Recall WEP uses a long-term secret key: K RC4 is a stream cipher, so each packet must be encrypted using a different key –Initialization Vector ( IV ) sent with packet –Sent in the clear, that is, IV is not secret –Note: IV similar to “MI” in WWII ciphers Actual RC4 key for packet is (IV,K) –That is, IV is pre-pended to long-term key K Part 3  Protocols 106

108 WEP Encryption K IV = (IV,K) –That is, RC4 key is K with 3-byte IV pre-pended Note that the IV is known to Trudy Part 3  Protocols 107 Alice, K Bob, K IV, E(packet,K IV )

109 WEP IV Issues WEP uses 24-bit (3 byte) IV –Each packet gets a new IV –Key: IV pre-pended to long-term key, K Long term key K seldom changes If long-term key and IV are same, then same keystream is used –This is bad, bad, really really bad! –Why? Part 3  Protocols 108

110 WEP IV Issues Assume 1500 byte packets, 11 Mbps link Suppose IVs generated in sequence –Since 1500  8/(11  10 6 )  2 24 = 18,000 seconds… –…an IV must repeat in about 5 hours Suppose IV s generated at random –By birthday problem, some IV repeats in seconds Again, repeated IV (with same K ) is bad! Part 3  Protocols 109

111 Another Active Attack Suppose Trudy can insert traffic and observe corresponding ciphertext –Then she knows the keystream for some IV –She can decrypt any packet(s) that uses that IV If Trudy does this many times, she can then decrypt data for lots of IV s –Remember, IV is sent in the clear Is such an attack feasible? Part 3  Protocols 110

112 Cryptanalytic Attack WEP data encrypted using RC4 –Packet key is IV and long-term key K –3-byte IV is pre-pended to K –Packet key is (IV,K) Recall IV is sent in the clear (not secret) –New IV sent with every packet –Long-term key K seldom changes (maybe never) So Trudy always knows IV s and ciphertext –Trudy wants to find the key K Part 3  Protocols 111

113 Cryptanalytic Attack 3-byte IV pre-pended to key Denote the RC4 key bytes… –…as K 0,K 1,K 2,K 3,K 4,K 5, … –Where IV = ( K 0,K 1,K 2 ), which Trudy knows –Trudy wants to find K = (K 3,K 4,K 5, … ) Given enough IV s, Trudy can find key K –Regardless of the length of the key! –Provided Trudy knows first keystream byte –Known plaintext attack (1st byte of each packet) –Prevent by discarding first 256 keystream bytes Part 3  Protocols 112

114 WEP Conclusions Many attacks are practical Attacks have been used to recover keys and break real WEP traffic How to prevent WEP attacks? –Don’t use WEP –Good alternatives: WPA, WPA2, etc. How to make WEP a little better? –Restrict MAC addresses, don’t broadcast ID, … Part 3  Protocols 113

115 Part 3  Protocols 114 GSM (In)Security

116 Part 3  Protocols 115 Cell Phones First generation cell phones –Brick-sized, analog, few standards –Little or no security –Susceptible to cloning Second generation cell phones: GSM –Began in 1982 as “Groupe Speciale Mobile” –Now, Global System for Mobile Communications Third generation? –3rd Generation Partnership Project (3GPP)

117 Part 3  Protocols 116 GSM System Overview Mobile Home Network “land line” air interface Base Station Base Station Controller PSTN Internet etc. Visited Network VLR HLR AuC

118 Part 3  Protocols 117 GSM System Components Mobile phone –Contains SIM (Subscriber Identity Module) SIM is the security module –IMSI (International Mobile Subscriber ID) –User key: Ki (128 bits) –Tamper resistant (smart card) –PIN activated (usually not used) SIM

119 Part 3  Protocols 118 GSM System Components Visited network - network where mobile is currently located –Base station - one “cell” –Base station controller - manages many cells –VLR (Visitor Location Register) - info on all visiting mobiles currently in the network Home network - “home” of the mobile –HLR (Home Location Register) - keeps track of most recent location of mobile –AuC (Authentication Center) - has IMSI and Ki

120 Part 3  Protocols 119 GSM Security Goals Primary design goals –Make GSM as secure as ordinary telephone –Prevent phone cloning Not designed to resist an active attacks –At the time this seemed infeasible –Today such an attacks are feasible… Designers considered biggest threats to be –Insecure billing –Corruption –Other low-tech attacks

121 Part 3  Protocols 120 GSM Security Features Anonymity –Intercepted traffic does not identify user –Not so important to phone company Authentication –Necessary for proper billing –Very, very important to phone company! Confidentiality –Confidentiality of calls over the air interface –Not important to phone company –May be important for marketing

122 Part 3  Protocols 121 GSM: Anonymity IMSI used to initially identify caller Then TMSI (Temporary Mobile Subscriber ID) used –TMSI changed frequently –TMSI’s encrypted when sent Not a strong form of anonymity But probably sufficient for most uses

123 Part 3  Protocols 122 GSM: Authentication Caller is authenticated to base station Authentication is not mutual Authentication via challenge-response –Home network generates RAND and computes XRES = A3(RAND, Ki) where A3 is a hash –Then (RAND,XRES) sent to base station –Base station sends challenge RAND to mobile –Mobile’s response is SRES = A3(RAND, Ki) –Base station verifies SRES = XRES Note: Ki never leaves home network!

124 Part 3  Protocols 123 GSM: Confidentiality Data encrypted with stream cipher Error rate estimated at about 1/1000 –Error rate is high for a block cipher Encryption key Kc –Home network computes Kc = A8(RAND, Ki) where A8 is a hash –Then Kc sent to base station with (RAND,XRES) –Mobile computes Kc = A8(RAND, Ki) –Keystream generated from A5(Kc) Note: Ki never leaves home network!

125 Part 3  Protocols 124 GSM Security SRES and Kc must be uncorrelated –Even though both are derived from RAND and Ki Must not be possible to deduce Ki from known RAND/SRES pairs (known plaintext attack) Must not be possible to deduce Ki from chosen RAND/SRES pairs (chosen plaintext attack) –With possession of SIM, attacker can choose RAND ’s Mobile Base Station 4. RAND 5. SRES 6. Encrypt with Kc 1. IMSI Home Network 3. (RAND,XRES,Kc) 2. IMSI

126 Part 3  Protocols 125 GSM Insecurity (1) Hash used for A3/A8 is COMP128 –Broken by 160,000 chosen plaintexts –With SIM, can get Ki in 2 to 10 hours Encryption between mobile and base station but no encryption from base station to base station controller –Often transmitted over microwave link Encryption algorithm A5/1 –Broken with 2 seconds of known plaintext Base Station Base Station Controller VLR

127 Part 3  Protocols 126 GSM Insecurity (2) Attacks on SIM card –Optical Fault Induction - could attack SIM with a flashbulb to recover Ki –Partitioning Attacks - using timing and power consumption, could recover Ki with only 8 adaptively chosen “plaintexts” With possession of SIM, attacker could recover Ki in seconds

128 Part 3  Protocols 127 GSM Insecurity (3) Fake base station exploits two flaws –Encryption not automatic –Base station not authenticated Mobile Base Station RAND SRES Fake Base Station No encryption Call to destination  Note: GSM bill goes to fake base station!

129 Part 3  Protocols 128 GSM Insecurity (4) Denial of service is possible –Jamming (always an issue in wireless) Can replay triple: (RAND,XRES,Kc) –One compromised triple gives attacker a key Kc that is valid forever –No replay protection here

130 Part 3  Protocols 129 GSM Conclusion Did GSM achieve its goals? –Eliminate cloning? Yes, as a practical matter –Make air interface as secure as PSTN? Perhaps… But design goals were clearly too limited GSM insecurities  weak crypto, SIM issues, fake base station, replay, etc. PSTN insecurities  tapping, active attack, passive attack (e.g., cordless phones), etc. GSM a (modest) security success?

131 Part 3  Protocols 130 3GPP: 3rd Generation Partnership Project 3G security built on GSM (in)security 3G fixed known GSM security problems –Mutual authentication –Integrity-protect signaling (such as “start encryption” command) –Keys (encryption/integrity) cannot be reused –Triples cannot be replayed –Strong encryption algorithm ( KASUMI ) –Encryption extended to base station controller

132 Part 3  Protocols 131 Protocols Summary Generic authentication protocols –Protocols are subtle! SSH SSL IPSec Kerberos Wireless: GSM and WEP

133 Part 3  Protocols 132 Coming Attractions… Software and security –Software flaws  buffer overflow, etc. –Malware  viruses, worms, etc. –Software reverse engineering –Digital rights management –OS and security/NGSCB


Download ppt "Computer and Information Security Chapter 10 Real-World Security Protocols 1."

Similar presentations


Ads by Google