An even better way to send stuff securely
Merlin Mann has shared an interesting idea for sharing sensitive information over e-mail without going through the hassles of learning to use e-mail encryption… and getting all your recipients to use the same scheme as you.
- Zip your files
- Put the zip file in your Dropbox ‘Public’ folder
- Email the file link, not the file
Originally from practicallyefficient
Merlin adds a bunch of extra “security” features that are mostly aimed at limiting the amount of time something is available (use a Hazel rule to clean up the files after a time) and making the URL to a file harder to just guess (e.g. by generating a password from 1Password and using it as the file name).
While those aren’t bad pieces of advice, per se, it’s pretty easy to write a script to pull everything out of someone’s public Dropbox folder on a schedule… so those pieces of advice don’t have all that much security value.
You can up the ante a bit by password-protecting the ZIP file; on a Mac (OS X) or Linux machine:
zip -ejr zipfilename.zip DirectoryOrFileToCompress
Of course, cracking zip passwords isn’t terribly hard, but it’s another step people have to go through, and at least the ZIP is still supported on every modern OS.
If you and your recipient are both on OS X, you can easily create an encrypted Disk Image file to share on Dropbox. If you’re not both on OS X, and you’ll be doing this a lot, you can create encrypted disk images using the wonderful and free TrueCrypt. It’s a bit to set up on OS X (especially if you already use MacFUSE for something), and creating the image each time can be a little annoying, so it’s not great for one-off stuff.
And, of course, you can use GnuPG to encrypt the files — it supports password-based (i.e. symmetric) encryption, so you needed mess about with keys. To do this easily:
On OS X, use the GPGTools Installer, then also install GPGFileTool for drag-n-drop file encryption/decryption
On Windows, use Gpg4win. Just right-click a file you want to encrypt, select GPGee->Encrypt (Symmetric) and follow the prompts.
Ultimately, it’s just not hard to actually use encryption with just a little setup. Just remember that all of these methods generate a password — don’t put your password in an e-mail with the link to the file: email the link and text the password.
Recent Comments