Advertisement
voodooKobra

Pollinate is Stupid (Ubuntu 14.04)

Jun 20th, 2014
964
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. Let's talk about Pollinate, and most importantly, why it's a terrible idea.
  2.  
  3. Pollinate (the Cloud PRNG Seed) feature in Ubuntu 14.04 was designed by someone who does not understand security: It pulls data from https://entropy.ubuntu.com/ and feeds it into /dev/urandom.
  4.  
  5. The premise for Pollinate is that some devices-- VMs especially-- have a hard time generating entropy on their first boot. The problem they are trying to solve is the existence of weak/colliding private keys. This is not an easy problem, nor one with a trivial solution. While I commend the Ubuntu developers for making an effort, their solution is plum-fuck retarded.
  6.  
  7. In what threat model is it okay to take data that an attacker can learn (or even falsify) and feed it into your random number generator?
  8.  
  9. "But Scott," you might retort, "Pollinate uses HTTPS, so they would have to break SSL to hack Pollinate." That sounds reasonable, until you apply a little bit of logic to the situation.
  10.  
  11. If you have enough entropy to facilitate a properly secure HTTPS communication, you have enough entropy to generate a cryptographically secure pseudorandom number. If you don't, then the HTTPS protection means very little and you might as well be transmitting in the clear.
  12.  
  13. There's a part of me that deeply suspects that, as a result of the NSA leaks by Edward Snowden, an exodus from insecure proprietary operating systems like Windows and Mac OSX to user-friendly flavors of Linux (namely: Ubuntu) prompted nation state actors to social engineer the Ubuntu devs into this decision. However, Hanlon's Razor applies here: Never attribute to malice that can be explained by stupidity.
  14.  
  15. Pollinate is stupid. It cannot solve the problem it's trying to solve, the way it's implemented.
  16.  
  17. I don't have a better solution... other than: If you're deploying a service where security matters, do one of the following:
  18.  
  19. - Put it on a bare-metal dedicated server
  20. - Expose it to a hardware RNG
  21.  
  22. Fuck Pollinate.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement