1 / 60

CS162 Operating Systems and Systems Programming Lecture 22 Security (II)

CS162 Operating Systems and Systems Programming Lecture 22 Security (II). November 19, 2012 Ion Stoica http://inst.eecs.berkeley.edu/~cs162. Recap: Security Requirements in Distributed Systems. Authentication Ensures that a user is who is claiming to be Data integrity

Télécharger la présentation

CS162 Operating Systems and Systems Programming Lecture 22 Security (II)

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CS162Operating Systems andSystems ProgrammingLecture 22Security (II) November 19, 2012 Ion Stoica http://inst.eecs.berkeley.edu/~cs162

  2. Recap: Security Requirements in Distributed Systems • Authentication • Ensures that a user is who is claiming to be • Data integrity • Ensure that data is not changed from source to destination or after being written on a storage device • Confidentiality • Ensures that data is read only by authorized users • Non-repudiation • Sender/client can’t later claim didn’t send/write data • Receiver/server can’t claim didn’t receive/write data

  3. Recap: Digital Certificates • How do you know is Alice’s public key? • Main idea: trusted authority signing binding between Alice and its private key {Alice, } Certificate Authority (offline) identity verification Digital certificate E({ , Alice}, Kverisign_private) Alice Bob D(E({ , Alice}, Kverisign_private), Kverisign_public) = {Alice, }

  4. Authentication: Passwords • Shared secret between two parties • Since only user knows password, someone types correct password  must be user typing it • Very common technique • System must keep copy of secret to check against passwords • What if malicious user gains access to list of passwords? • Need to obscure information somehow • Mechanism: utilize a transformation that is difficult to reverse without the right key (e.g. encryption)

  5. Passwords: Secrecy • Example: UNIX /etc/passwd file • passwdone way hash • System stores only encrypted version, so OK even if someone reads the file! • When you type in your password, system compares encrypted version “eggplant”

  6. Passwords: How easy to guess? • Three common ways of compromising passwords • Password Guessing: • Often obvious passwords like birthday, favorite color, girlfriend’s name, etc… • Trivia question 1: what is the most popular password? • Trivia question 2: what is the next most popular password? • Answer: (from 32 million stolen passwords– Rockyou 2010)http://www.nytimes.com/2010/01/21/technology/21password.html • Dictionary Attack (against stolen encrypted list): • Work way through dictionary and compare encrypted version of dictionary words with entries in /etc/passwd • http://www.skullsecurity.org/wiki/index.php/Passwords • Dumpster Diving: • Find pieces of paper with passwords written on them • (Also used to get social-security numbers, etc.)

  7. Passwords: How easy to guess? (cont’d) • Paradox: • Short passwords are easy to crack • Long ones, people write down! • Technology means we have to use longer passwords • UNIX initially required lowercase, 5-letter passwords: total of 265=10million passwords • In 1975, 10ms to check a password1 day to crack • In 2005, .01μs to check a password0.1 seconds to crack • Takes less time to check for all words in the dictionary!

  8. Passwords: Making harder to crack • Can’t make it impossible to crack, but can make it harder • Technique 1: Extend everyone’s password with a unique number (“Salt” – stored in password file) • Early UNIX uses 12-bit “salt” dictionary attacks 4096x harder • Without salt, could pre-compute all the words in the dictionary hashed with UNIX algorithm (modern salts are 48-128 bits)

  9. Passwords: Making harder to crack (cont’d) • Technique 2: Require more complex passwords • Make people use at least 8-character passwords with upper-case, lower-case, and numbers • 708=6x1014=6million seconds=69 days@0.01μs/check • Unfortunately, people still pick common patterns • e.g. Capitalize first letter of common word, add one digit • Technique 3: Delay checking of passwords • If attacker doesn’t have access to /etc/passwd, delay every remote login attempt by 1 second • Makes it infeasible for rapid-fire dictionary attack

  10. Passwords: Making harder to crack (cont’d) • Technique 4: Assign very long passwords/passphrases • Can have more entropy (randomnessharder to crack) • Embed password in a smart card (or ATM card) • Requires physical theft to steal password • Can require PIN from user before authenticates self • Better: have smartcard generate pseudorandom number • Client and server share initial seed • Each second/login attempt advances random number

  11. Passwords: Making harder to crack (cont’d) • Technique 5: “Zero-Knowledge Proof” • Require a series of challenge-response questions • Distribute secret algorithm to user • Server presents number; user computes something from number; returns answer to server; server never asks same “question” twice • Technique 6: Replace password with Biometrics • Use of one or more intrinsic physical or behavioral traits to identify someone • Examples: fingerprint reader, palm reader, retinal scan

  12. Rest of This Lecture • Host Compromise • Attacker gains control of a host • Denial-of-Service • Attacker prevents legitimate users from gaining service • Attack can be both • E.g., host compromise that provides resources for denial-of-service

  13. Host Compromise • One of earliest major Internet security incidents • Internet Worm (1988): compromised almost every BSD-derived machine on Internet • Today: estimated that a single worm could compromise 10M hosts in < 5 min using a zero-day exploit • Attacker gains control of a host • Reads data • Compromises another host • Launches denial-of-service attack on another host • Erases data

  14. Definitions • Worm • Replicates itself usually using buffer overflow attack • Virus • Program that attaches itself to another (usually trusted) program or document • Trojan horse • Program that allows a hacker a back door to compromised machine • Botnet (Zombies) • A collection of programs running autonomously and controlled remotely • Can be used to spread out worms, mounting DDoS attacks

  15. Trojan Example • Nov/Dec e-mail message sent containing holiday message and a link or attachment • Goal: trick user into opening link/attachment (social engineering) • Adds keystroke logger or turns into zombie • How? Typically by using a buffer overflow exploit

  16. Buffer Overflow • Part of the request sent by the attacker too large to fit into buffer program uses to hold it • Spills over into memory beyond the buffer • Allows remote attacker to inject executable code void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { intn; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . }

  17. Example: Normal Execution void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { int n; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . } Stack X + 200

  18. Example: Normal Execution void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { int n; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . } Stack X + 200 get_cookie()’s stack frame X

  19. Example: Normal Execution void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { int n; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . } Stack X + 200 get_cookie()’s stack frame X return address backto get_cookie() X - 4

  20. Example: Normal Execution void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { int n; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . } Stack X + 200 get_cookie()’s stack frame X return address backto get_cookie() X - 4 n X - 8 cookie X - 520

  21. Example: Normal Execution void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { int n; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . } Stack X + 200 get_cookie()’s stack frame X return address backto get_cookie() X - 4 n X - 8 cookie X - 520 return address backto munch() X - 524 strcpy()’s stack …

  22. Example: Normal Execution void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { int n; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . } Stack X + 200 get_cookie()’s stack frame X return address backto get_cookie() X - 4 n X - 8 cookie value read from packet X - 520 return address backto munch() X - 524

  23. Example: Normal Execution void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { int n; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . } Stack X + 200 get_cookie()’s stack frame X return address backto get_cookie() X - 4 n X - 8 cookie value read from packet X - 520

  24. Example: Normal Execution void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { int n; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . } Stack X + 200 get_cookie()’s stack frame X return address backto get_cookie() X - 4

  25. Example: Normal Execution void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { int n; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . } Stack X + 200 get_cookie()’s stack frame X

  26. Example: Buffer Overflow void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { int n; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . } Stack X + 200 get_cookie()’s stack frame X return address backto get_cookie() X - 4 n X - 8 cookie X - 520 return address backto munch() X - 524 strcpy()’s stack …

  27. Example: Buffer Overflow void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { int n; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . } Stack X + 200 cookie value read from packet get_cookie()’s stack frame X return address backto get_cookie() X - 4 n X - 8 X - 520 return address backto munch() X - 524

  28. Example: Buffer Overflow void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { int n; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . } Stack X + 200 get_cookie()’s stack frame Executable Code X return address backto get_cookie() X X - 4 <Doesn’t Matter> X - 8 <Doesn’t Matter> X - 520 return address backto munch() X - 524

  29. Example: Buffer Overflow void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { int n; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . } Stack X + 200 get_cookie()’s stack frame Executable Code X return address backto get_cookie() X X - 4 <Doesn’t Matter> X - 8 <Doesn’t Matter> X - 520

  30. Example: Buffer Overflow void get_cookie(char *packet) { . . . (200 bytes of local vars) . . . munch(packet); . . . } void munch(char *packet) { intn; char cookie[512]; . . . code here computes offset of cookie in packet, stores it in n strcpy(cookie, &packet[n]); . . . } Stack X + 200 get_cookie()’s stack frame Executable Code Now branches to code read in from the network From here on, machine falls under the attacker’s control X return address backto get_cookie() X X - 4

  31. Automated Compromise: Worms • When attacker compromises a host, they can instruct it to do whatever they want • Instructing it to find more vulnerable hosts to repeat the process creates a worm: a program that self-replicates across a network • Often spread by picking 32-bit Internet addresses at random to probe … • … but this isn’t fundamental • As the worm repeatedly replicates, it grows exponentially fast because each copy of the worm works in parallel to find more victims

  32. Worm Spreading f = (e K(t-T) – 1) / (1+ e K(t-T)) • f – fraction of hosts infected • K – rate at which one host can compromise others • T – start time of the attack f 1 T t

  33. Worm Examples • Morris worm (1988) • Code Red (2001) • 369K hosts in 10 hours • MS Slammer (January 2003) • Theoretical worms • Zero-day exploit, efficient infection and propagation • 1M hosts in 1.3 sec • $50B+ damage

  34. Morris Worm (1988) • Infect multiple types of machines (Sun 3 and VAX) • Was supposed to be benign: estimate size of Internet • Used multiple security holes including • Buffer overflow in fingerd • Debugging routines in sendmail • Password cracking • Intend to be benign but it had a bug • Fixed chance the worm wouldn’t quit when reinfecting a machine  number of worm on a host built up rendering the machine unusable

  35. Code Red Worm (2001) • Attempts to connect to TCP port 80 (i.e., HTTP port) on a randomly chosen host • If successful, the attacking host sends a crafted HTTP GET request to the victim, attempting to exploit a buffer overflow • Worm “bug”: all copies of the worm use the same random generator and seed to scan new hosts • DoS attack on those hosts • Slow to infect new hosts • 2nd generation of Code Red fixed the bug! • It spread much faster

  36. MS SQL Slammer (January 2003) • Uses UDP port 1434 to exploit a buffer overflow in MS SQL server • 376-bytes plus UDP and IP headers: one packet • Effect • Generate massive amounts of network packets • Brought down as many as 5 of the 13 internet root name servers • Others • The worm only spreads as an in-memory process: it never writes itself to the hard drive • Solution: close UDP port on firewall and reboot

  37. MS SQL Slammer (January 2003) Europe (Monday) US (Monday) Initial attack (From http://www.f-secure.com/v-descs/mssqlm.shtml)

  38. Hall of Shame • Software that have had many stack overflow bugs: • BIND (most popular DNS server) • RPC (Remote Procedure Call, used for NFS) • NFS (Network File System), widely used at UCB • Sendmail (most popular UNIX mail delivery software) • IIS (Windows web server) • SNMP (Simple Network Management Protocol, used to manage routers and other network devices)

  39. Potential Solutions • Don’t write buggy software • Program defensively – validate all user-provided inputs • Use code checkers (slow, incomplete coverage) • Use Type-safe Languages (Java, Perl, Python, …) • Eliminate unrestricted memory access of C/C++ • Use HW support for no-execute regions (stack, heap) • Leverage OS architecture features • Compartmentalize programs • E.g., DNS server doesn’t need total system access • Add network firewalls

  40. Announcements • Project 4: deadlines pushed by one day • Initial design due on Tuesday, Nov 27 • Code due on Thursday, Dec 6 • Final design and evaluations due on Friday, Dec 7 • Review for final exam: Wednesday, Dec 5, 6-9pm • Next Monday I’ll be out: • Lecture will be given by Ali Ghodsi (Researcher at Berkeley and Professor at KTH, Sweden)

  41. 5min Break

  42. Firewall • Security device whose goal is to prevent computers from outside to gain control to inside machines • Hardware or software Attacker Firewall Internet

  43. Firewall (cont’d) • Restrict traffic between Internet and devices (machines) behind it based on • Source address and port number • Payload • Stateful analysis of data • Examples of rules • Block any external packets not for port 80 (i.e., HTTP port) • Block any email with an attachment • Block any external packets with an internal IP address • Ingress filtering

  44. Firewalls: Properties • Easier to deploy firewall than secure all internal hosts • Doesn’t prevent user exploitation/social networking attacks • Tradeoff between availability of services (firewall passes more ports on more machines) and security • If firewall is too restrictive, users will find way around it, thus compromising security • E.g., tunnel all services using port 80

  45. Denial of Service • Huge problem in current Internet • Major sites attacked: Yahoo!, Amazon, eBay, CNN, Microsoft • 12,000 attacks on 2,000 organizations in 3 weeks • Some more that 600,000 packets/second • Almost all attacks launched from compromised hosts • General Form • Prevent legitimate users from gaining service by overloading or crashing a server • E.g., SYN attack

  46. Affect on Victim • Buggy implementations allow unfinished connections to eat all memory, leading to crash • Better implementations limit the number of unfinished connections • Once limit reached, new SYNs are dropped • Affect on victim’s users • Users can’t access the targeted service on the victim because the unfinished connection queue is full  DoS

  47. SYN, SeqNum = x SYN and ACK, SeqNum = y and Ack = x + 1 ACK, Ack = y + 1 SYN Attack(Recap: 3-Way Handshaking) • Goal: agree on a set of parameters: the start sequence number for each side • Starting sequence numbers are random. Server Client (initiator)

  48. SYN Attack • Attacker: send at max rate TCP SYN with random spoofed source address to victim • Spoofing: use a different source IP address than own • Random spoofing allows one host to pretend to be many • Victim receives many SYN packets • Send SYN+ACK back to spoofed IP addresses • Holds some memory until 3-way handshake completes • Usually never, so victim times out after long period (e.g., 3 minutes)

  49. Solution: SYN Cookies • Server: send SYN-ACK with sequence number y, where • y = H(client_IP_addr, client_port) • H(): one-way hash function • Client: send ACK containing y+1 • Sever: • verify if y = H(client_IP_addr, client_port) • If verification passes, allocate memory • Note: server doesn’t allocate any memory if the client’s address is spoofed

  50. V R Other Denial-of-Service Attacks • Reflection • Cause one non-compromised host to attack another • E.g., host A sends DNS request or TCP SYN with source V to server R. R sends reply to V Reflector (R) Attacker (A) Internet Victim (V)

More Related