Network security CIS534 l4

74 194 0
Network security CIS534 l4

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

Network Security Lecture Introduction to Secure Protocols Objectives of Lecture CINS/F1-01 • Introduce the concept of a secure protocol • Model the principals involved in secure protocols, and their capabilities • Demonstrate how basic cryptographic mechanisms can be used to build entity authentication and key distribution protocols suited to insecure networks • Appreciate how key distribution and entity authentication can be enabled using trusted third parties • Describe the main features of the Kerberos protocol suite and outline its application in Windows 2000 Contents 4.1 4.2 Secure protocols Entity Authentication and Key Establishment 4.3 Key Distribution via Trusted Third Parties 4.4 Kerberos 4.1 Secure Protocols • A protocol is a set of rules for exchanging messages between (or more) principals over a network • The word ‘protocol’ in the OSI model is reserved and refers to rules governing communication between a pair of peer entities • We’ll use it here in a more general way • In this lecture, we largely leave unspecified the OSI layer at which our protocols operate – Lectures and will look at protocols for specific layers Secure Protocols So what is a secure protocol? • When acting honestly, principals (participants) achieve the stated aim of the protocol (e.g A successfully authenticates to B, or A and B establish a key) • Neither passive eavesdropper nor malicious, active adversary can defeat this aim (e.g by successfully impersonating A in an authentication protocol with B) • This all pre-supposes that the stated aim is actually clearly stated! The Principals – • Alice and Bob who wish to authenticate one another or to share a key • In more complex protocols, Trent, a trusted third party who is trusted by both Alice and Bob – aka (depending on application) TTP, key distribution centre (KDC), certification authority (CA),… – What Trent is trusted to (and not do) depends on the protocol and application The Principals – Two kinds of adversary: • Eve, a passive eavesdropper (‘sniffs’ messages at will) • Mallory, an active adversary, who can view, alter, delete, replay and inject messages into the network Warning 1: Often, secure protocols not involve real people, or so only indirectly Writing ‘Alice’, ‘Bob’, etc, is just for convenience Warning 2: We’ll freely mix up A and Alice; B and Bob, etc In practice, entities might be ‘named’ by IP addresses, domain names, user names, etc The Principals – Mallory is not all-powerful: • He cannot guess a random number chosen by another principal from a sufficiently large set of possibilities • He cannot invert a one-way hash function • Without the correct key, he cannot obtain the plaintext for a given ciphertext Nor can he compose ciphertexts for plaintexts of his choice • He cannot sign messages without having the appropriate private key • He cannot correctly compute a MAC on a message without knowing the correct secret key • In summary: Mallory cannot break strong cryptographic mechanisms Summary So Far • So we equip Alice, Bob, Trent with strong cryptographic mechanisms to use on an untrusted network • The question then is: How we use these cryptographic mechanisms (signatures, public-key and symmetric key encryption, hash functions, MACs) to design secure protocols (providing security services for our principals)? 4.2 Entity Authentication • We distinguish between (data) origin authentication (verifying the origin of received data) and entity authentication (verification of a claimed identity) • An origin authentication service can be built from a data integrity mechanism, e.g a MAC (more details in IC2) • Here we consider entity authentication, a basic security service in networks • Typically achieved by exchange of messages called an authentication protocol (called an authentication exchange in ISO 7498-2) 10 Kerberos Principals • Authentication Server (AS) – Authenticated by client at login based on long-term key, – AS gives client ticket granting ticket and short-term key – AS provides an authentication service • Ticket Granting Server (TGS) – Authentication with client based on short-term key and ticket granting ticket – TGS then issues tickets to client which give client access to further servers – TGS provides an access control/authorization service 60 Kerberos – Motivations • Logical separation of authentication and authorisation/access control – Though AS and TGS usually implemented on same physical platform • Differentiated control over lifetime of ticket granting tickets (typically 10 hours) and session tickets for actual access to services (typically minutes) • A user only needs to use his long-term secret key once per 10 hour session, to establish short-term key and ticket granting ticket – Convenient for users – Reduces possibility of exposure of long-term key 61 Kerberos Protocol AS TGS (authentication server) (ticketgranting server) C (client) S (server) 62 Kerberos Phases Phase 1: In messages and 2, C and AS use longterm key to authenticate AS gives C short-term key and ticket granting ticket (TGT) Phase 2: In messages and 4, C and TGS use shortterm key and ticket granting ticket to authenticate TGS gives C session key and ticket Phase 3: In messaged and 6, C and S use session key and ticket to authenticate and set up secure session Phases and will usually be repeated many times for each execution of Phase 63 Kerberos – Message Formats (Simplified) CAS: TGS||from||to||NC ASC: {KC,TGS||C||from||to}KAS,TGS|| {KC,TGS||NC||from||to||TGS}KAS,C (Note that the first part of message is the ticket granting ticket for the TGS) CTGS: S||from||to||N’C || {KC,TGS||C||from||to}KAS,TGS || {C||T1}KC,TGS TGSC: {KC,S||C||from||to}KTGS,S || {KC,S|| N’C||from||to||S}KC,TGS (Note that the first part in message is the ticket for the server S) CS: {KC,S||C||from||to}KTGS,S || {C||T2}KC,S SC : {T2}KC,S 64 Keys Used in Kerberos • KAS,TGS is a long-term key shared by AS and TGS • KAS,C is a long-term key shared by AS and C • KTGS,S is a long-term key shared by TGS and S – These keys need to be established in advance • KC,TGS is a short-term key shared by C and TGS (established by messages and 2) – This key is transported securely from C to TGS in the ticket granting ticket • KC,S is a session key shared by C and S (established by messages and 4) – This key is transported securely from C to S in the ticket 65 Tickets in Kerberos • {KC,TGS||C||from||to}KAS,TGS – Is the ticket granting ticket – Received by C in message and forwarded to TGS in message – Only TGS can decrypt it to obtain short-term key KC,TGS and validity period from||to These parameters determine ticket given to C in message • {KC,S||C||from||to}KTGS,S – Is the ticket – Received by C in message and forwarded to S in message – Only S can decrypt it to obtain session key KC,S and validity period from||to These parameters determine access given to C in subsequent session with server S • These tickets are similar to message in NeedhamSchroeder: {K || A}KB,T – Now carry validity periods as well as keys 66 Entity Authentication in Kerberos • Entity authentications are achieved using a mixture of nonces and timestamps • Methods are similar to ones used in Section 4.2 and in Needham-Schroeder protocol • For example: AS is authenticated to C using challenge/response protocol based on encryption, shared key KAS,C and nonce NC in messages and • C is not authenticated to AS explicitly, but C can only decrypt message if it has the correct key KAS,C • Other authentications: C and TGS; C and S 67 Use of Cryptography in Kerberos • Kerberos uses symmetric encryption and MACs • Specifically, Version (as in RFC 1510) uses DES combined with one of MD4, MD5, or a CRC (not recommended) • Releases 1.2 and higher of Kerberos Version allow triple DES (3DES) in CBC-mode • Extensions supporting AES included since Kerberos Version 5, release 1.3.2 68 Kerberos Issues – • Lack of revocation: ticket granting tickets valid until they expire, typically 10 hours What if compromised? • Key management: within realms (domains): long-term keys need to be established between AS and TGS, TGS and Servers and AS and clients • Scalability: authentication across realms is complicated • Synchronous clocks needed, protected against attacks Caches of recent messages to protect against replay within clock skew • Availability: need for on-line AS and TGS, trusted by clients not to eavesdrop 69 Kerberos Issues – • Key storage: short-term keys and ticket granting tickets located on largely unprotected client hosts • Denial of Service: potential for DoS attacks on clock service or on AS/TGS? • Passwords: in most deployments, the Client-AS longterm key KAS,C is usually based on password entered by user at start of session – Kerberos vulnerable to dictionary attacks – paper by Wu at: http://citeseer.nj.nec.com/wu99realworld.html – Ultimately, then, security is dependent on users and the quality of the passwords they can be persuaded to remember • Code Vulnerabilities: many found over the years http://web.mit.edu/kerberos/www/advisories/ 70 Windows 2000 Network Authentication • Microsoft have adopted and extended Kerberos for network authentication in Windows 2000 • Supersedes Windows NTLM (unilateral authentication) in NT4 • One extension: – support for public-key encryption to protect client/AS messages (rather than password-based long-term key) – allows use of authentication based on client smart cards 71 Windows 2000 Network Authentication • Second extension: – use of Kerberos data authorization field (normally empty) – transports Win2K access privileges – in the form of SIDs, derived from Active Directory – these are compared to ACLs of remote objects to make access decisions • Message formats published, but proprietary to Microsoft • Non-standard extension to Kerberos makes it difficult to interoperate Microsoft and nonMicrosoft implementations 72 Single Sign On • Kerberos is an example of a Single Sign On (SSO) system • User enters a single password, and obtains seamless access to multiple network services or applications • Microsoft Passport: an example of a web-based SSO solution, aimed at e-commerce consumers • Liberty Alliance: an open, standards-based effort at achieving federated network identity, a concept related to SSO • Many vendors currently offer similar SSO/password management products 73 Lessons Learned? • Designing protocols is easy • But designing secure protocols is hard – there are many infamous failures in the literature • Some good protocols are already standardised (e.g ISO 9798, ITU-T X.509, …) – use these rather than rolling your own! • The problem of verifying security gets harder as the protocols get more complex • Security weaknesses arise from errors in specification and implementation, sidechannels, lack of user training, host insecurities, poor random number generation… 74 ... Example: Passwords Over a Network • Alice has a user ID and password allowing her to remotely access a computer B over a network – Alice sends the user ID and password over the network – B uses Alice’s... be captured in transit over the network – Depending on the network type and attacker capabilities, • So this approach not really suitable for use over insecure networks – But still very commonly... information resources over potentially insecure networks • Entity authentication provides a fundamental service: – It allows one host or user on the network to check with which other host or user

Ngày đăng: 09/01/2018, 11:51

Mục lục

    Example: Passwords Over a Network

    Security of the Protocol – 1

    Security of the Protocol – 2

    Security of the Protocol – 3

    Using MACs for Entity Authentication

    Signature-based Mutual Authentication – Example

    More on Key Establishment

    Diffie-Hellman Key Exchange Set-up

    4.3 Key Distribution via TTPs

    Needham-Schroeder – Step by Step

Tài liệu cùng người dùng

Tài liệu liên quan