How did LastPass master passwords get compromised?

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • draft-irtf-cfrg-opaque

    The OPAQUE Asymmetric PAKE Protocol

  • When I was doing some research into building an app that encrypted data similar to these cloud password managers, I encountered OPAQUE[1] which seems to be the ideal way to perform authentication and securing a master encryption key. It is an asymmetric PAKE that also has a step for providing a salt. This removes the need to do what LastPass does with treating the first hash as a password. There is a great article from Cloudflare on how it works[2], and a working implementation of the spec in rust[3].

    [1]: https://github.com/cfrg/draft-irtf-cfrg-opaque

    [2]: https://blog.cloudflare.com/opaque-oblivious-passwords/

    [3]: https://github.com/novifinancial/opaque-ke

  • opaque-ke

    An implementation of the OPAQUE password-authenticated key exchange protocol

  • When I was doing some research into building an app that encrypted data similar to these cloud password managers, I encountered OPAQUE[1] which seems to be the ideal way to perform authentication and securing a master encryption key. It is an asymmetric PAKE that also has a step for providing a salt. This removes the need to do what LastPass does with treating the first hash as a password. There is a great article from Cloudflare on how it works[2], and a working implementation of the spec in rust[3].

    [1]: https://github.com/cfrg/draft-irtf-cfrg-opaque

    [2]: https://blog.cloudflare.com/opaque-oblivious-passwords/

    [3]: https://github.com/novifinancial/opaque-ke

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • argon2-browser

    Argon2 library compiled for browser runtime

  • > is there really fast enough implementations available to the browser

    Browsers have pretty good support for surfacing native code SHA family hash functions which you can use to speed up PBKDF2. It's called the Web Crypto API and it's available even in Internet Explorer 11. [1]

    If you're willing to drop support for IE11 and older phones like the iPhone 4S, then you get access to WebAssembly. With WASM you can get a bunch of custom algorithms to be quite fast. The Argon2 browser WASM library claims to be only about 10x slower than optimized native code. [2]

    It's not perfect, but it isn't as bad as it used to be with just pure JavaScript.

    --

    [1] https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_...

    [2] https://github.com/antelle/argon2-browser

  • pass-import

    A pass extension for importing data from most existing password managers

  • What about an offline password manager? Like pass[1] or one that supports the KeePass format. Then you could use your regular file synchronization tool to synchronize the database files. You could also use a P2P sync tool like Syncthing. (Of course this makes more sense if you already have some kind of file sync setup.)

    [1] https://www.passwordstore.org/

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts