vote up 0 vote down star

I have a portable hard disk and I want to protect it from others accessing my disk. I would not prefere encryption tools as it would make my applications and files inside my Portable HDD respond slowly. Is there any other solution that I could go in for.

Thank you

flag

closed as belongs on serverfault.com by Jeff Atwood May 7 at 3:58

7 Answers

vote up 0 vote down

If you decide not to use encryption then it is nearly impossible to prevent people from accessing your data if they steal the device.

Here are your avenues of deterrence:

  • Make the data unreadable or meaningless in some way. You can achieve this by:

    • Encrypting the drive, but you would prefer not to.
    • Using an filesystem that the thief may not be familiar with. (E.g. ext2 is by default unreadable in windows. The average thief or person statistically uses windows.)
    • Using some variety of cipher or code within the files on your drive (e.g. use sub-10 encoding for all numbers stored in your documents.)
  • Obscure the data or its location

    • Prepend, append and intersperse all your files with junk data (introns). This will obfuscate the data in your files.
    • Use filesystem mechanisms to 'hide' the files
    • Create an elaborate directory structure (extremely weak)
    • Change all file extensions and headers (weak)
    • Prepend your files with the contents of a small, simple image file and change the file extension to match the image file
    • Create a decoy device and attempt to ensure that a prospective thief will take only the decoy
  • Mitigate the importance of the data

    • Store no useful data on the drive
    • Ensure that readable data on the drive is of no consequence
    • Associate all the data on the drive with someone other than yourself (this ties into the obfuscation direction.)
  • Physically secure the device

    • Handcuff the device to your arm and ensure that neither your arm nor the chain are severed
    • Enclose the device in a reasonably secure box under lock and key
    • Create a unique connector to the device which, if improperly attached to a computer, will cause the drive to erase itself (this will require some modification of the hardware.)
    • Attach a GPS tracking device to the USB device
    • Devise a system that will physically or electronically disconnect the drive from its interface circuitry

Seriously, though, TrueCrypt is actually the easiest AND most secure way of achieving the privacy you desire.

link|flag
vote up 1 vote down

Physical security is probably your best bet if you don't want to use any type of encryption program such as TrueCrypt.

Keep it with you, or in a safe location at all times. Don't leave your backpack or bag lying around.

If you do have to leave it for any reason, entrust it to someone you know. Lost/stolen data is the worst!

If you decide that encryption is the way to go, then try TrueCrypt. Very easy program to use, I personally have never noticed any significant performance degradation.

link|flag
vote up 4 vote down

There are many possibilities:

Obscurity:

  • Use an MP3 player/camera and rename all the files to end in what is expected
  • Use some outdated storage method like 8'' floppy disks, MD, tapes

Encryption:

  • You ruled this option out, but I guess a lot of people will suggest some advanced, fast encryption method, maybe with hardware acceleration

Physical:

  • Lock it away
  • Build you propriety connector, then mold it into epoxy
  • Protect it with some electro-shocker device
  • Create an automatic self destruction method
  • Don't have a portable drive
link|flag
vote up -1 vote down

I agree with the fact that encryption is necessary to achieve full security.

About TrueCrypt, I can add that, in normal use, it doesn't slow your PC down noticeably.

I only notice a slowdown when I hibernate and then resume from hibernation my enctypted OS partition, but then, I find it acceptable since I'm encrypting/decrypting 3 Gb of data.

link|flag
vote up 0 vote down

If you don't encrypt then the data is visible to anyone gaining access to the disk.

But you could also store your data under f:\temp\foo\filez\bar\tmp\dummy\my\my-files\ :)

link|flag
2  
windows search probably won't find anything :-) – Gordon Carpenter-Thompson May 3 at 12:59
A simple disk-space tree viewer will foil this scheme. There's a popular PC program that I use on and off, but I forget the name. – Stefan Kendall May 3 at 15:34
@iftrue: Sure, I was joking. – cherouvim May 3 at 15:47
vote up 0 vote down

Well, other than encryption of some sort, physical security is your only other option. That means not letting the baddies get their grubby little hands on your hard disk.

I keep mine locked in the briefcase while at work (although there's not many baddies there :-) and unsecured at home (since they could take my actual computer if they got into the house anyway).

If you do physical security right, you don't need anything else.

link|flag
+1 for physical security – Brad May 3 at 13:23
vote up -1 vote down

i think there's no better solution except encryption - just how to make it lightweight.

if you have very few files to protect, some OS has file level encryption (eg, NTFS). if you want whole disk protection, you need advanced OS feature like BitLock.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.