Onion Information
Encrypted swap partition on Debian/Ubuntu
The swap partition can hold a lot of unencrypted confidential information and the fact that it persists after shutting down the computer can be a problem. Encrypting a swap partition however is slightly tricky if one wants to also support s...
Onion Details
Page Clicks: 1
First Seen: 03/11/2024
Last Indexed: 10/21/2024
Onion Content
The swap partition can hold a lot of unencrypted confidential information and the fact that it persists after shutting down the computer can be a problem. Encrypting a swap partition however is slightly tricky if one wants to also support suspend-to-disk (also called hibernation). Here's a procedure that worked for me on both Debian Stretch and Ubuntu 18.04 (Bionic Beaver): Install the cryptsetup package : apt install cryptsetup Add this line to /etc/crypttab : sda2_crypt /dev/sda2 /dev/urandom cipher=aes-xts-plain64,size=256,swap,discard Set the swap partition to be this in /etc/fstab : /dev/mapper/sda2_crypt none swap sw 0 You will of course want to replace /dev/sda2 with the partition that currently holds your unencrypted swap. This is loosely based on a similar procedure for Ubuntu 6.10 , but I don't use suspend-to-disk and so I simplified the setup and use a random encryption key instead of a passphrase. RSS Atom If your writing out unencrypted memory dump to that file then that's bad news. In that memory will probably be the keys and such nessicary to decrypt your encrypted volumes. I think (never done it myself) a better method is to encrypt your entire harddrive first, use LVM on top of that then use a logical volume for swap. That way the lvm stuff gets decrypted first and the suspend wakeup script in your initrd should be able to access swap. Another method would be to encrypt swap then make sure that initrd prompts you for your swap password before the wake up scripts run. Shouldn't be very difficult to do either. Check out 'man initramfs-tools' for details. I could live with dropping suspend to disk using only suspend to ram. But suspend to ram is not safe is it? As any number of bugs could let a cracker in I guess.. I suppose so. It would be a interesting test to see in what ways a Linux PC is secure or vulnerable against a physical attack without the attacker rebooting or shutting down the machine. This is something I've played around with a bit, but only in a fairly 'i wonder if' way. Gnome-screen-saver does a good job of locking the screen, as that sort of thing is required in many corporate environments. Even though you can click out of it and get a login prompt. Just as long as you don't have the magic sysreq key enabled or are logged into one of the consoles then I expect you can be reasonably secure. so you'd have ot find some attack that worked on X to break gnome-screensaver or some hack surrounding buggy USB or wireless drivers (bluetooth, 802.11g etc). If the attacker had a big enough budget or a government type then that could lead to some james bond stuff. It is possible to tear apart a laptop while it's still running. I know for PCs and servers some people will have ways to splice in mobile power supplies (any half decent electrition can do it) to keep those machines running until they can get them into a some workshop or whatnot. So with laptops it would be that much easier. There is that DMA firewire hack for XP that people can use to get memory contents using a Linux machine. I wouldn't be surprised if something like that worked on a Linux machine. http://storm.net.nz/projects/16 Motherboard traces can be tapped into also. PCI Express supports hotplug and a person may have some sort of device that can use DMA hacks. RAM is funny also. We all know that you need to keep power to keep RAM in good shape and useful. However lots of people don't know that RAM can keep information for a short while after it's been deactivated. So it's possible if your quick and got the right hardware that you'll be able to get most of the contents of RAM read into another machine. Of course all of that is a bit fantastic. People have done it in the past under controlled environments for research reasons and I wouldn't put it past NSA folks to be able to do stuff like that, but I am more worried about leaving my laptop sitting at a airport or something unattended or whatnot. I am kinda stupid like that. I'm hoping that the person who stole the thing would have no way of knowing the drive is encrypted and would first try to reboot the machine. There are probably things you can do to mitigate the risk. Something like once the machine wakes up you have 30 seconds to successfully log in before the thing shut itself off. Something like that. (If I wanted to get james-bond about everything and try to protect secrets from the soviets I suppose I'd have to have a machine specially constructed with a epoxy encased mainboard and a fusable link that gets blown unless I get my password right within 15 seconds or so. (combined with some sort of biometrics and secure key arrangement) Of course the on board drive would have to be encoded using two or three different types of encryption and be created using random 128byte-long passwords that were randomly generated and never seen by a human...) But if you still want to do suspend-to-disk it shouldn't be difficult to do that without dumping your memory to a unencrypted partition. Initramfs has been surprisingly easy to work it, at least for me. Make sure busybox package is installed. Kinda interesting stuff. Especially for people that would want to make a publicly available Kiosk. (being secure against physical access rather then the whole james bond thing) Here is another interesting thing: https://www.informationweek.com/cold-boot-attack-defeats-disk-encryption-software/d/d-id/1064889? Oh one other things... There are people interested into james bond stuff. There are several companies that make self-destructive hard drives that can be triggered in any number of ways. There is at least one company that has a hard drive that has a capsule that when triggered will burst and spray acid over the interior of a harddrive, perminately eating away at the magnetic lining of the platters. http://www.deadondemand.com/products/enhancedhdd/ Hilarious. I debian lenny with encrypted root and swap partitions, when booting, one is asked for root and swap passphrases. To avoid the swap passphrase, a working setup is found here: http://agnulinuxuser.blogspot.com/2011/12/encrypting-swap-partition.html Just a note that this setup still works with Ubuntu 13.10: If you have an encrypted home partition and an encrypted swap as described here, pm-hibernate will use uswsusp and you have a working hibernation with swap encryption. The Ubuntu community articles should be updated with this, it works very well. (Side node: A more timely cryptsetup is probably: sudo cryptsetup --cipher aes-xts-plain --key-size 256 --hash sha512 --use-random --verify-passphrase luksFormat /dev/sdXY . XTS seems to be faster for many people - check with cryptsetup benchmark if you have cryptsetup >= 1.6.) After several research, this tutorial was the one that worked for me in the Debian Wheezy installation. I think that something that I did not see in other tutorials was adding the option "luks" in the crypttab file, and this is why cswap mounting used to fail after a reboot. Add a comment