privacy preserving dns
play

Privacy-Preserving DNS Analysis of Broadcast, Range Queries and - PowerPoint PPT Presentation

Privacy-Preserving DNS Analysis of Broadcast, Range Queries and Mixes Hannes Federrath, Karl-Peter Fuchs, Dominik Herrmann , Christopher Piosecny University of Hamburg (Germany) 1 Agenda Missing Privacy in DNS Characteristics of DNS Traffic


  1. Privacy-Preserving DNS Analysis of Broadcast, Range Queries and Mixes Hannes Federrath, Karl-Peter Fuchs, Dominik Herrmann , Christopher Piosecny University of Hamburg (Germany) 1

  2. Agenda Missing Privacy in DNS Characteristics of DNS Traffic DNS Anonymity Service Range Queries 2

  3. Privacy Issue: DNS Resolver learns queries of all users DNS Resolver [Lu & Tsudik, 2010] 3

  4. Third-party DNS Resolvers are increasing in popularity Google, OpenDNS, Comodo, Norton DNS, ... Advertised benefits: 4

  5. Objectives for the DNS Anonymity Service 1. protect privacy of users – hide relationship between users and queries from resolver 2. practicable and usable solution – very low latency – compatibility with existing DNS 5

  6. Agenda Missing Privacy in DNS Characteristics of DNS Traffic DNS Anonymity Service Range Queries 6

  7. Overview of our DNS dataset We obtained real-life DNS traces: • DNS query log of a German university campus network • >4000 distinct users (on average 2100 active per day) User ID Example log entry: 1278194041.274 472_1 ad-emea.doubleclick.net A � Additionally, for each hostname we have recorded • TTL value • query and reply size • lookup latency (using Google’s DNS Resolver) 7

  8. Characteristics of DNS traffic Requests follow a power-law CDF of TTL values 1e+08 100000 Total Number of Requests 1e+07 1e+06 10000 TTL [seconds] 100000 10000 1000 1000 100 100 10 1 10 1 100 10000 1e+06 0 0.2 0.4 0.6 0.8 1 Rank of Hostname Fraction of Hostnames • 80% of queries are for top 10,000 hostnames • regardless of TTL most RRs remain constant for a long time 8

  9. Characteristics of DNS traffic • almost every website visit causes a DNS query burst Firefox Chrome without prefetching with prefetching en.wikipedia.org en.wikipedia.org upload.wikimedia.org geoiplookup.wikimedia.org nn.wikipedia.org commons.wikimedia.org th.wikipedia.org el.wikipedia.org creativecommons.org en.wikibooks.org www.wikimediafoundation.org en.wikinews.org www.mediawiki.org en.wikiquote.org en.wikisource.org en.wikiversity.org en.wiktionary.org et.wikipedia.org gl.wikipedia.org lists.wikimedia.org simple.wikipedia.org species.wikimedia.org wikimediafoundation.org 9 www.wikilovesmonuments.de

  10. Agenda Missing Privacy in DNS Characteristics of DNS Traffic DNS Anonymity Service • Broadcast • Mixes Range Queries 10

  11. Architecture of the proposed DNS Anonymity Service • drop-in replacement for DNS Resolver • two building blocks – broadcast mechanism – mixes cascade 11

  12. Motivation for broadcasting What if each client had a local copy of the full DNS database? • clients get zero lookup latency • all DNS queries are unobservable 12

  13. Motivation for broadcasting What if each client had a local copy of the full DNS database? • clients get zero lookup latency not practical • all DNS queries are unobservable We can exploit the power-law distribution of queries! • compromise: local copy for most popular hostnames only Anonymity Service • monitors most popular hostnames for updates Central Update • provides full copy of database to new clients Initial Download • broadcasts changed resource records to clients Increm. Updates Evaluate implementation in trace-driven simulations 13

  14. Broadcasting is promising and practicable Hit Rate Required Traffic 100 entries 40% 10,000 entries 83.9% 100,000 entries 94.5% 14

  15. Broadcasting is promising and practicable Hit Rate Required Traffic 100 entries Central Update 40% 352 MB / day Initial Download 10,000 entries 850 KB / client 83.9% 290 KB with zlib Increm. Updates 100,000 entries 2.6 MB / hour and client 94.5% 1.5 MB with zlib 15

  16. Anonymise remaining queries with mixes Stub Mix Query Q Q Q Q Q Q Q Mix 1 Mix 2 Mix 3 Resolver Resolver Client • Motivation: – already deployed in practice (Tor, AN.ON) – attacker model of practical systems reasonable for DNS • Performance impact: cryptographic operations, network latency • Implementation specifics – channels for low latency (re-established after 60s) – fixed-size messages (queries: 57 bytes, replies: 89 bytes) to counter traffic analysis – Java, BouncyCastle, RSA (2048 bit), AES (128 bit OFB) 16

  17. Performance evaluation of our implementation Trace-driven simulation using recorded lookup delays • 2082 concurrent users • 107 queries/sec • DNS traffic increases by 100% (240 KB per day) • Latency results are also promising percentile 50% 90% without mixes 9.2 ms 46.2 ms 3 mixes (LAN) 10.9 ms 52.0 ms mix-mix RTT 20ms 3 mixes (WAN) 171 ms 274 ms client-mix RTT 80ms • Congestion once >1000 queries/sec issued à Performance of mixes appears to be satisfactory for DNS à 17

  18. Agenda Missing Privacy in DNS Characteristics of DNS Traffic DNS Anonymity Service Range Queries 18

  19. Related Work: Range Queries Dummy 1 ... Query Query Dummy n –1 Range Stub Resolver Query Resolver Client Reply 1 Reply 2 Reply ... Reply n [Zhao, 2007] [Castillo-Perez, 2008] • hide actually desired queries using n –1 dummy queries • should offer low latency; but no trace-driven evaluation so far Also related, but not of interest for us: PPDNS [Lu & Tsudik, 2010] • implements cPIR • is built on top of CoDoNS 19

  20. Trace-driven evaluation of range queries • We implemented a range query simulator – clients draw n –1 dummies randomly from set of all hostnames – range queries are compressed using zlib – transmitted via TCP to Range Query DNS Resolver • Trace-driven simulation using recorded lookup delays • Evaluation using our DNS traces à traffic volume increases x4 for n=10, x24 for n=100 • Basic implementation – each reply is returned independently to the client – latencies do not increase considerably – even for n=1000 • But: attacker can exploit dependencies of consecutive queries! 20

  21. Timing attack based on traffic bursts t RQ 1a R1 R2 R3 R4 likely dummies RQ 1b 21

  22. Preventing the timing attack t RQ 1a R1 R2 R3 R4 likely dummies RQ 1b 1. stall desired reply t RQ 1a R1–4 RQ 1b 2. delay consecutive query t RQ 1a R1 R2 R3 R4 RQ 1b RQ 1b 22

  23. Preventing the timing attack is expensive t RQ 1a R1 R2 R3 R4 likely dummies median RQ 1b latency n=10 1. stall desired reply t RQ 1a R1–4 200ms RQ 1b 2. delay consecutive query t RQ 1a R1 R2 R3 R4 400ms RQ 1b RQ 1b Open question: how to prevent semantic intersection attack? 23

  24. Summary Missing Privacy in DNS • queries leak to DNS Resolver • low-latency, practical solution Characteristics of DNS traffic • power-law distribution • query bursts Proposed DNS Anonymity Service • broadcast: zero latency + unobservability • mixes: satisfactory performance Evaluation of Range Queries • fast for isolated queries • preventing timing attack is expensive Dominik Herrmann herrmann@informatik.uni-hamburg.de 24

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