cache on delivery
play

Cache on delivery marco@sensepost.com Tuesday 20 July 2010 whoami - PowerPoint PPT Presentation

Cache on delivery marco@sensepost.com Tuesday 20 July 2010 whoami Tuesday 20 July 2010 Scalable applications / Cloud? http://csrc.nist.gov/groups/SNS/cloud-computing/ Tuesday 20 July 2010 Cloud options


  1. Cache on delivery marco@sensepost.com Tuesday 20 July 2010

  2. whoami Tuesday 20 July 2010

  3. Scalable applications / Cloud? http://csrc.nist.gov/groups/SNS/cloud-computing/ Tuesday 20 July 2010

  4. Cloud options http://www.flickr.com/photos/eli_k_hayasaka/764416130/ Tuesday 20 July 2010

  5. The need for caching • Large percentage of data remains relatively constant • Wikipedia page contents • Youtube video links • FB Profile data • Poorly designed solutions regenerate data on each request • Don’t regenerate, rather regurgitate • Caching!=buffering Tuesday 20 July 2010

  6. ~80% of WikiMedia’s content is served by Squid http://upload.wikimedia.org/wikipedia/commons/4/4f/Wikimedia-servers-2009-04-05.svg Tuesday 20 July 2010

  7. ~80% of WikiMedia’s content is served by Squid http://en.wikipedia.org/wiki/Wikipedia:Technical_FAQ Tuesday 20 July 2010

  8. Caching solutions Hard disk cache < 64MB CPU Cache < 32MB Caching proxies GBs-TBs Cached scripts/pages MBs-GBs At all layers, there are Cached database queries / caches MBs-GBs computations Browser caches MBs-GBs Tuesday 20 July 2010

  9. Caching solutions Redis Persistent KV Store Ehcache Persistent Store Memcache KV Store MemcacheDB Persistent KV Store Let’s focus on the application layer (too many Websphere eXtreme Scale Obj Store options) Oracle Coherence Obj Store Google BigTable Persistent Store Tuesday 20 July 2010

  10. Caching solutions Redis Persistent KV Store Ehcache Persistent Store KV Store Memcache MemcacheDB Persistent KV Store Let’s focus on the application layer (too many Websphere eXtreme Scale Obj Store options) Oracle Coherence Obj Store Google BigTable Persistent Store Tuesday 20 July 2010

  11. Memcache • memcache.org LiveJournal • Written for early LJ Wikipedia • Non-persistent network-based KV Flickr Bebo store Twitter • [setup+usage demo] Typepad Yellowbot Youtube Digg Wordpress Tuesday 20 July 2010

  12. Basic KV • Slabs are fixed size • Users don’t care about slabs • Dst slab determined • Miners care about slabs by value size Tuesday 20 July 2010

  13. Application Integration function get_foo(foo_id) foo = memcached_get("foo:" . foo_id) return foo if defined foo foo = fetch_foo_from_database(foo_id) memcached_set("foo:" . foo_id, foo) return foo end http://memcached.org/ http://pic001.cnblogs.com/img/dudu/200809/2008092817263955.png Tuesday 20 July 2010

  14. Trivial protocol • ASCII-based • Long-lived • Tiny command set • ???? • set • get • stats • ... Binary and UDP protocols also exist, these were not touched. Tuesday 20 July 2010

  15. Trivial protocol • ASCII-based • Long-lived • Tiny command set • ???? • set • get • stats • ... Binary and UDP protocols also exist, these were not touched. Tuesday 20 July 2010

  16. Trivial protocol • ASCII-based • Long-lived • Tiny command set • ???? • set • get • stats • ... Binary and UDP protocols also exist, these were not touched. Tuesday 20 July 2010

  17. Trivial protocol • ASCII-based • Long-lived • Tiny command set • ???? • set • get • stats • ... Binary and UDP protocols also exist, these were not touched. Tuesday 20 July 2010

  18. Trivial protocol • ASCII-based • Long-lived • Tiny command set • ???? • set • get • stats • ... Binary and UDP protocols also exist, these were not touched. Tuesday 20 July 2010

  19. Goals • Connect to memcached • Find all slabs • Retrieve keynames from each slab • Retrieve each key • Tuesday 20 July 2010

  20. Lies, damn lies, and stats stats slabs STAT 1 :chunk_size 80 • stats cmd has subcmds <...> STAT 2 :chunk_size 104 <...> STAT 3 :chunk_size 136 • items <...> STAT 4 :chunk_size 176 <...> • slabs STAT 6 :chunk_size 280 <...> STAT 8 :chunk_size 440 • ... <...> STAT 9 :chunk_size 552 <...> STAT 9:cas_badval 0 STAT active_slabs 7 This gets us the slabs_ids Tuesday 20 July 2010

  21. Retrieving key names Rely on two {poorly| un}documented features Tuesday 20 July 2010

  22. Retrieving key names Feature #1: Remote enabling of debug mode Tuesday 20 July 2010

  23. Retrieving key names Feature #2: “stats cachedump” Tuesday 20 July 2010

  24. Retrieving key names Feature #2: “stats cachedump” Tuesday 20 July 2010

  25. Retrieving key names Feature #2: “stats cachedump” Slabs ID Slabs ID Tuesday 20 July 2010

  26. Retrieving key names Feature #2: “stats cachedump” Key limit Key limit Tuesday 20 July 2010

  27. Retrieving key names Feature #2: “stats cachedump” Key list Key list Tuesday 20 July 2010

  28. Retrieving key names Feature #2: “stats cachedump” This gets us key names Tuesday 20 July 2010

  29. And this gets us? • No need for complex hacks. Memcached serves up all its data for us. • What to do in an exposed cache? • Mine • Overwrite Tuesday 20 July 2010

  30. Mining the cache • go-derper.rb – memcached miner • Retrieves up to k keys from each slab and their contents, store on disk • Applies regexes and filters matches in a hits file • Supports easy overwriting of cache entries • [demo] Tuesday 20 July 2010

  31. Finding memcaches • Again with the simple approach • Pick an EC2 subnet, scan for memcaches Port 11211 and mod’ed .nse • Who’s %#^&ing cache is this? • Where’s the good stuff? • Is it live? Tuesday 20 July 2010

  32. Results • Objects found • Serialized Java • Pickled Python • Ruby ActiveRecord • .Net Object • JSON Tuesday 20 July 2010

  33. Results: Actual Sites • [screenshots in the talk] Tuesday 20 July 2010

  34. Fixes? • FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. FW. • Hack code to disable stats facility (but doesn’t prevent key brute-force) • Hack code to disable remote enabling of debug features • Switch to SASL • Requires binary protocol • Not supported by a number of memcached libs • Also, FW. Tuesday 20 July 2010

  35. Places to keep looking • Improve data detection/sifting/filtering • Spread the search past a single EC2 subnet • Caching providers (?!?!) • Other cache software Tuesday 20 July 2010

  36. Questions? sensepost.com/blog Tuesday 20 July 2010

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