Sciencetext Tips & Tricks

Tech talk, social media, blogging, computing tips and tricks

Pack Up Your Passwords with Passpack

April 26th, 2007 · by David Bradley >> 10 Comments

Passpack logoTara Kelly from passpack.com commented recently on our passwords for scientists post. To draw your attention to a novel approach to storing your passwords.

Now, we have all been through the pains of storing and retrieving passwords for all those millions of social network sites, our various MySpace and YouTube accounts, everything from Digg to HotDiggedy needs a unique username and password combination.

With our passwords for scientists post, we gave you an idea on how to create strong passwords, which Ms Kelly kindly expanded on by offering the suggestion that rather than use a single chemical formula you add a couple of words, so that, for instance your passphrase might become C6H12O6 rots teeth or something slightly more cryptic the meaning of which only you would be aware.

Unfortunately, this still leaves wide open the problem of how to keep tabs on all these passwords, strong as they might be and to remember which username is associated with which. There are lots of online and offline password managers available and almost everyone I know as a USB storage key they password protect within which they could store a master list of their passwords.

But, what if you forget your USB key when you are traveling, or cannot access a particular storage site because of a browser incompatibility in your library or cybercafe?

Passpack.com seems to have the answer. You register with the site for free (although it’s only in beta, so don’t rely on it 100% just yet), create a user ID, a login pass, and cleverly a packing key. Only your user ID is sent to the site to login, your password is modified so that it is not sent back to Passpack in an exposed state. Login then triggers download of your encrypted password briefcase.

A script running in the browswer window (with no info sent back to passpack from this stage onwards) then uses your packing key to unpack the case in your browser window. This gives you and you only (unless someone is peering over your shoulder) access to your collection of usernames and passwords, each combination associated with the appropriate website URL.

So far, so good.

Having tried it a couple of times, it’s very easy to set up and use. When you first login you see an array of black squares which are part of a unique anti-phishing mechanism associated with a phrase you get to choose that only you can ever see and that verifies that you are on the passpack system not a spoofed site. “It combines a custom Welcome message, IP recognition and hand-eye training,” Ms Kelly says.

However, I had a seriously nagging feeling that there is something missing from passpack – namely automatic login to your various websites. So, I dropped Tara at Passpack’s head office a line to see what she had to say about this fundamental issue and she came straight back to me, to tell me that this very feature – an auto-login tool – with a Smart Button – that does not rely on plugins is just about to be signed off and released (you can watc a demo here – http://passpack.wordpress.com/2007/03/22/passpack-auto-login-no-plugin-needed/). They’re also adding inline help to the application to make it easier to use. She also told me that, “We have a few small interface improvements almost ready to roll, as well as a few updates that handle some cosmetic issues in Mac Safari.”

The Smart Button is not yet implemented (it has been security validated, but needs some cosmetic fixes), so check back here again soon and I’ll update via the comments on this post so you get to hear as soon as it goes live. As it stands, Passpack just looks like a clever password storage facility with double encryption and a neat line in anti phishing bait. Once the Smart Button is enabled, however, it will steam ahead of the pack.

If you start using Passpack and then change your mind about it, you can always take your data with you. “We support complete export of your data,” Tara told me, “as well as encrypted back up copies.” The developers obviously want users to stay with them because they like the site not simply because of inertia or being locked in.

You can sign up for passpack.com here. Before you ask, no they aren’t paying me to promote the product (10% commission for a free product is $0, after all). It just seems to be a unique approach to a perennial problem that could help you.

10 responses so far ↓

  • Marco Barulli // Apr 26, 2007 at 6:13 pm

    Hi,
    you might also be interested in trying Clipperz.

    Clipperz is an online password manager with some uncommon features:
    - automatic (direct) login to websites
    - offline version
    - …

    To configure automated logins you just need to launch a bookmarklet from the page containing the login form.

    And you are not limited to storing passwords, but any valuable textual information.

    http://beta.clipperz.com

    Please feel free to compare the security level of Clipperz with Passapack’s. (AES 256 instead of 128, SHA2-256 instead of SHA-1 or MD5, a proper PRNG, …). We are also particularly proud of the authentication process based on Stanford SRP protocol. And you need just one password (not two as in Passpack).

    It’s free and completely anonymous.

    The source code is freely available from Clipperz site for security review and the core crypto functions has been released under a BSD license.

    Thanks,
    Marco
    Clipperz co-founder

  • David Bradley // Apr 26, 2007 at 6:47 pm

    Hi Marco

    Thanks for alerting us to this password manager. Is it also browser and OS independent?

  • Marco Barulli // Apr 26, 2007 at 11:44 pm

    Clipperz runs smoothly with every OS and on Firefox, IE and Opera. Safari support coming very soon.

    Thanks,
    Marco

  • Francesco (PassPack) // Apr 27, 2007 at 1:18 am

    @David
    Thanks for this article. It’s nicely done.

    @Marco
    Let me reply to your comments on security, and if I oversimplify, please understand that I’m trying to make this post intelligible for non-crypto readers as well. So bear with me.

    -1-
    AES 128bit is suggested by US Federal Government for Secret documents. AES 256bit takes that further, but it is utterly useless for our scope. PassPack’s AES implementation supports 192bit and 256bit keys but we prefer to use 128bit. Why? Simple. In order to actually obtain a pure 256bit derived key, the user has to write a pass phrase of more then 50 characters. Have you ever met a user that does this? It’s pure theory.

    Just to make the point. I played with the password strength tester that you recently implemented. It reaches it’s maximum strength reading at 128bit (not 256). Don’t worry, it’s not an oversight on your part, it’s just reasonable: there’s no need for more. [wink]

    -2-
    I agree that SHA-1, if used directly, is not so secure because the Chinese have found a way to reverse it. That’s why we don’t use SHA-1 directly, rather we combine it with xxTEA to create a hash. Here’s the formula:

    SHA1Hash(xxTEAencrypt(text, key)).substring(0, 32)

    That’s not reversible.

    -3-
    Tom Wu’s SRP technology is great, and so is PRNG, and generation of entropy is exciting, but honestly – it’s overkill.

    In general, it’s important to remember that PassPack (and Clipperz) need to run in the browser. And browsers speak Javascript. And Javascript is slow. Every choice needs to be carefully weighed to find the right balance between security and speed. That doesn’t mean we choose speed over security – it means we choose balance.

    Here’s an example. My PassPack account contains overs 200 entries, each with a User ID, Password, link, some tags and even notes. Yet, my 3 year old laptop can encrypt my entire pack and save it in 16 seconds (4 of which are added as “downtime” by PassPack itself to avoid stressing the browser). Clipperz employees 6 seconds to encrypt a single card. That’s a substantial difference.

    -4-
    One quick note on PassPack’s Packing Key – it’s what enables us to implement our anti-phishing welcome message. That’s just not possible with a single user/pass combination.

    Security isn’t only about what algorithms you choose.

    Ciao,
    Francesco Sullo
    PassPack Software Architect

  • PassPack's April 2007 Buzz Round up « PassPack - The Blog // May 1, 2007 at 8:18 pm

    [...] Pack Up Your Passwords with Passpack | Significant Figures [...]

  • PassPack Your Passwords: Get Them Anywhere, Securely and Freely // Aug 13, 2007 at 5:45 am

    [...] as the next day — since I stay up past midnight often enough this just makes it easier) I discovered a service called PassPack. The basic premise is this: Create an account, store all your passwords [...]

  • Danielle D // May 6, 2008 at 9:53 pm

    Another intersting site similar to these is needmypassword.com.
    -Needmypassword.com is free
    -very easy to use
    -safe & secure
    check it out!

  • David Bradley // May 7, 2008 at 7:30 am

    Thanks for the pointer Danielle. I wonder if Tara, Marco, Francesco and others could tell us how it compares…

    db

  • David Bradley // Jul 1, 2008 at 7:44 pm

    Passpack Desktop has now been released. This Creative Commons application is free for everyone and forever and means you can verify security by looking under the hood and knowing (via your Firewall) whether it calls home or anything.

    Download here: http://www.passpack.com/desktop

    I think this is what most potential users will have been waiting for.

  • David Bradley // Sep 30, 2008 at 1:58 pm

    I’d be interested to know how users feel Passpack compares to the relatively new https://lastpass.com/

Leave a Comment