cmpsc 497 password authentication
play

CMPSC 497 Password Authentication Trent Jaeger Systems and - PowerPoint PPT Presentation

Systems and Internet Infrastructure Security Network and Security Research Center Department of Computer Science and Engineering Pennsylvania State University, University Park PA CMPSC 497 Password Authentication Trent Jaeger Systems and


  1. Systems and Internet Infrastructure Security Network and Security Research Center Department of Computer Science and Engineering Pennsylvania State University, University Park PA CMPSC 497 � Password Authentication Trent Jaeger Systems and Internet Infrastructure Security (SIIS) Lab Computer Science and Engineering Department Pennsylvania State University Systems and Internet Infrastructure Security (SIIS) Laboratory Page 1

  2. Security Model - E-voting • Who are the principals? Voters, Admins, Counters, Others ‣ • Who are adversaries? • Which commands may be threatened (attack surface)? Start the application ‣ Process the vote ‣ Count the votes ‣ • Who must the application trust? To do what? Of principals above ‣ Systems and Internet Infrastructure Security (SIIS) Laboratory Page 2

  3. Principals Principals • Principals are expected system subjects ‣ Computers, agents, people, enterprises, … ‣ Depending on context referred to as: servers, clients, users, entities, hosts, routers, … - and some may be adversarial ‣ Security is defined with respect to these subjects • Implication: every principal may have unique view • A trusted third party ‣ Trusted by all principals for some set of actions ‣ Often used as introducer or arbiter CSE543 - Introduction to Computer and Network Security Page � X Systems and Internet Infrastructure Security (SIIS) Laboratory Page 3

  4. Challenges • Distinguish adversaries from trusted principals Suppose the e-voting application receives a command ‣ How do we know whether the command may be from an ‣ adversary or a trusted principal? • The security mechanism for identifying principals is Authentication ‣ The act of confirming the truth of an attribute of a single ‣ piece of data claimed true by an entity For an identity, authentication is the process of actually ‣ confirming a claimed identity Systems and Internet Infrastructure Security (SIIS) Laboratory Page 4

  5. What is Authentication? Authentication • Short answer: establishes identity • Several mechanisms for performing authentication ‣ Answers the question: To whom am I speaking? • Long answer: evaluates the authenticity of identity by proving credentials ‣ Credential – is proof of identity ‣ Evaluation – process that assesses the correctness of the association between credential and claimed identity • for some purpose • under some policy (what constitutes a good cred.?) CSE543 - Introduction to Computer and Network Security Page � X Systems and Internet Infrastructure Security (SIIS) Laboratory Page 5

  6. Why authentication? E-Voting Application • Well, we live in a world of rights, permissions, and • Suppose you are building an e-voting application duties How do you ensure your application satisfies security ‣ ‣ Authentication establishes our identity so that we can requirements? obtain the set of rights • What does the e-voting application do? ‣ E.g., we establish our identity with Tiffany’s by providing a valid credit card which gives us rights to purchase Process vote commands ‣ goods ~ physical authentication system Store votes ‣ Retrieve/count votes ‣ • What are its security requirements? Let’s see how we reason about security ‣ • Q: How does this relate to security? CSE543 - Introduction to Computer and Network Security Page � X Systems and Internet Infrastructure Security (SIIS) Laboratory Page 6

  7. Why authentication (cont.)? Risk • Same in online world, just different constraints ‣ Vendor/customer are not physically co-located, so we • What’s at risk in the e-voting application? must find other ways of providing identity • e.g., by providing credit card number ~ electronic authentication system ‣ Risks (for customer and vendor) are different • Q: How so? • Computer security is crucially dependent on the proper design, management, and application of authentication systems. 7 CSE543 - Introduction to Computer and Network Security Page � X Systems and Internet Infrastructure Security (SIIS) Laboratory Page

  8. What is Identity? Security Requirements • That which gives you access … which is largely • Usually security requirements are described in three determined by context categories ‣ We all have lots of identities • Secrecy ‣ Pseudo-identities • Really, determined by who is evaluating credential Prevent risk that sensitive data may be leaked to an adversary (e.g., ‣ votes) ‣ Driver’s License, Passport, SSN prove … ‣ Credit cards prove … • Integrity ‣ Signature proves … Prevent risk that adversaries may modified data that others depend ‣ ‣ Password proves … on (e.g., vote instances, tallies, database) ‣ Voice proves … • Availability Prevent risk that adversaries block use of critical services (e.g., ‣ • Exercise: Give an example of bad mapping between disable the processing of votes) identity and the purpose for which it was used. 8 CSE543 - Introduction to Computer and Network Security Page � X Systems and Internet Infrastructure Security (SIIS) Laboratory Page

  9. Credentials Exercise • … are evidence used to prove identity • Classify each of the following as a violation of • Credentials can be confidentiality, of integrity, of availability, or of some ‣ Something I am combination. ‣ Something I have ‣ Something I know Carol changes the amount of Angelo's check from $100 to ‣ $1000 John copies Mary's homework ‣ Eve registers the domain name “psu.edu" and refuses to ‣ let Penn State buy or use that domain name. 9 CSE543 - Introduction to Computer and Network Security Page � X Systems and Internet Infrastructure Security (SIIS) Laboratory Page

  10. Passwords • An example of “something you know” Client users must remember passwords to ‣ access their data on servers • Passwords have a checkered history People have often chosen poor passwords ‣ Why is that an issue? ‣ • We (security community) assumed (in the 1990s) that passwords would be replaced with another technology to enable users to authenticate Systems and Internet Infrastructure Security (SIIS) Laboratory Page 10

  11. Password Use Lateness Policy • Naively: Retrieve password for ID from database and check against that supplied password • Assignments and project milestones are assessed a 20% per-day late penalty, up to a • Baravelli: ...you can't come in unless you give the password. Professor Wagstaff: Well, what is the password? • maximum of 4 days. Unless the problem is Baravelli: Aw, no. You gotta tell me. Hey, I tell what I do. I give you three guesses. It's the name of a fish. • apocalyptic, don’t give me excuses. • ……. [Slams door. Professor Wagstaff knocks again. Baravelli opens peephole again.] Hey, what's-a matter, you no • Students with legitimate reasons who understand English? You can't come in here unless you say, "Swordfish." Now I'll give you one more guess. • Professor Wagstaff: ...swordfish, swordfish... I think I got it. Is it "swordfish"? contact the professor before the deadline Baravelli: Hah. That's-a it. You guess it. • Professor Wagstaff: Pretty good, eh? • may apply for an extension. [Marx Brothers, Horse Feathers ] • How should you store passwords to protect them? • You decide what you turn in • Just storing them in a file gives anyone with access to the file your password CSE543 - Introduction to Computer and Network Security Page � X Systems and Internet Infrastructure Security (SIIS) Laboratory Page 11

  12. Password Storage • Instead of storing passwords, we store A value that can be computed from the password ‣ F(password) = value • That is highly unlikely to be the same as the value ‣ computed from another password (collision-free) From which it is difficult to extract (reverse) the ‣ password (one-way) • What kind of function provides such properties? Systems and Internet Infrastructure Security (SIIS) Laboratory Page 12

  13. Hash Algorithms Cryptographic Hash Functions • Hash algorithm • A challenge is to determine how a program may ‣ Compression of data into a hash value be threatened by adversaries ‣ E.g., h(d) = parity(d) • In what ways may an adversary impact CIA? ‣ Such algorithms are generally useful in algorithms (speed/ space optimization) • … as used in cryptosystems • Adversaries may be able to control the resources ‣ One-way - (computationally) hard to invert h() , i.e., used by the program and inputs to the program compute h -1 (y), where y=h(d) ‣ Collision resistant hard to find two data x 1 and x 2 such that Obtained via system calls – later researchers ‣ h(x 1 ) == h(x 2 ) described the system calls that may receive adversary- controlled input as a program’s attack surface • Q: What can you do with these constructs? CSE543 - Introduction to Computer and Network Security Page � X Systems and Internet Infrastructure Security (SIIS) Laboratory Page 13

  14. Password Storage • Hosts store password hashes in a file Originally, /etc/passwd for UNIX systems ‣ Now /etc/shadow ‣ • Server programs can also store their own users’ password hashes in a file For Apache can store in /usr/local/apache/passwd ‣ • What if an adversary can gain access to a password storage file? 14 Systems and Internet Infrastructure Security (SIIS) Laboratory Page

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend