Full Disk Encryption (FDE)
Full disk encryption (FDE) is a way to protect the contents of an entire hard drive from unauthorized access. It works by encrypting all the data stored on the disk, including the operating system and applications. This means that if someone gains physical access to the computer or removes the hard drive, they won't be able to read the data without the correct password or encryption key. FDE can help protect sensitive information such as financial data, personal information, and trade secrets.
About this Full Disk Encryption Page Contributor maintained wiki page. | |
---|---|
Support Status | stable |
Difficulty | easy |
Contributor | HulaHoop![]() |
Support | Support |

Introduction[edit]
Essentials[edit]
Full Disk Encryption (FDE) can protect data at rest from physical access such as a stolen hard drive in case a computer or notebook gets stolen. Data at rest means, that a full disk encrypted computer is powered off.
To provide sufficient security from password cracking brute force attempts, it is required to use strong passwords. See Passwords.
In an advanced threat model it is also required that the FDE key has also been already decayed from the computer's volatile memory (RAM) so it cannot be extracted from there either. See also Cold Boot Attack Defense.
Full Disk Encryption versus Malware[edit]
Full disk encryption is generally not designed to defeat malware.
Encrypting Kicksecure VMs[edit]
This is currently unsupported and does not provide any additional protection. The Encrypted Images wiki page provides a detailed explanation, with the conclusion noting:
The host of security considerations suggest that an unrealistic set of operational rules are required to defend the integrity of a purely encrypted guest image. Use of Full Disk Encryption (FDE) is recommended instead.
Deniable Encryption[edit]
Such software is only effective in jurisdictions that have human rights and follow the rule of law. In scenarios where one might face indefinite detention or worse, it is actually better to avoid using plausibly deniable encryption feature. According to game theory, the adversary incurs a neglible cost by prolonging torture or incarceration for the captive while the reward of finally breaking the victim is much greater, in case there was actually anything to be found. [1] In group scenarios, using deniable encryption is a strong disincentive against the captured member "defecting" to save themselves since they cannot prove to the captor their loyalty. [2]
Measures Against Non-violent Coercion[edit]
Even in relatively civilized states, the laws have been misconstrued to make civil liberties protections at the border weaker. In the case of the US, the Fourth Amendment can be violated at will by customs officers. This section assumes a scenario where one is compelled to divulge passwords without measures involving physical harm or indefinite imprisonment. In such situations it is always recommended to exercise your right to remain silent and to request a lawyer. Your devices will most likely be impounded and therefore backups of important data should be made beforehand.
- This EFF Guide
provides advice and outlines your rights at the border. Tips like storing key material in the cloud should be ignored.
- A clever technique
(page 3) proposed by OTR's designer, Ian Goldberg, uses Shamir's Secret Splitting Scheme to split a key-file and distribute it among trusted friends to make producing the key a physical impossibility.
- Cryptographer Bruce Schneier outlines a simpler variant of the above technique. A new random string is added as a password and then passed along to a trusted person, with the usual password being removed before crossing the border. After arriving, the key to access the drive can be retrieved and the original one re-added. [3]
Physical Access[edit]
If unauthorized access is strongly suspected or confirmed, the hardware should not be trusted or used after it is back in your possession. This scenario is only relevant to a small minority who are already targeted for physical surveillance. A sufficiently skilled adversary can infect it with spyware or sabotage it in a number of ways that are virtually undetectable. For example, malicious firmware could be installed to record all activities, or the machine rendered inoperable by bricking the hardware. In that eventuality, none of the measures outlined in this chapter will help.
Protection Against Powerful Adversaries[edit]
As noted above, advanced attackers have virtually limitless possibilities to infect a computer under their physical control, such as flashing low-level firmware or adding physical implants.
Plausible deniability and Full Disk Encryption (FDE) are also useless if subjected to physical abuse by a captor.
A safer option is to have not left any discoverable data traces on a personal machine in the first place. See Live Mode and Anti-Forensics Precautions.
To protect against theft of personal information or data, FDE should be applied on the host, and the computer turned off when exposed to higher-risk situations like traveling. In the case of laptops, the battery should be temporarily removed after powering off. This ensures that the RAM chips are completely powered down and that any encryption key(s) in memory are erased. [4] See also Cold Boot Attack Defense.
Sleep mode:
- Hibernation is also a safe alternative because the swap partition is encrypted in the default FDE configuration for various platforms (like Debian), so long as no changes were made.
- Suspend to RAM is insecure.
Be sure to follow the standard advice for picking strong and unique passphrases, so they cannot be feasibly brute-forced. Also, computers should never be left unattended in untrusted venues.
Debian Hosts[edit]
Configuring FDE during system install is straightforward. The default cipher is AES-256 in XTS mode.
Removable Media[edit]
New Removable Media[edit]
Gnome Disks Utility creates LUKS partitions with AES-128 by default which is insufficient in event of quantum computers materializing. This has been successfully reported and fixed upstream as of February 2019, [5] [6] but until it lands in Debian, an appropriately secure container must be manually created. Afterwards, unlock the device and format the internal filesystem as EXT4 in Gnome Disks.
First enumerate the device. They will usually be called 'sdb1', as sdaX is reserved for the system on default installs. To avoid confusion, only connect one removable device at a time. sudo ls /dev/
Create a LUKS container and change the device name as needed, then follow the prompts. sudo cryptsetup -v --cipher aes-xts-plain64 --key-size 512 --hash sha512 --use-random luksFormat <device>
Legacy Device Encryption Upgrade[edit]
It is safer to re-encrypt the device with a stronger key rather than performing a quick format that will otherwise leave the old/weaker header intact.
1. First enumerate the device.
They will usually be called 'sdb1', as sdaX is reserved for the system on default installs. To avoid confusion, only connect one removable device at a time.
sudo ls /dev/
2. View the LUKS header data in order to make necessary adjustments.
Run.
sudo cryptsetup luksDump --debug <device>
LUKS header data legend:
- 'MK' means 'Master Key'. [7]
- AES in XTS mode uses a key size double its bit size (512 in this case) since in XTS the key is split in 2, resulting in AES with 256-bit keys. [8]
- 'Payload offset' is 4096 for 256-bit keys and 2048 for 128-bit keys. [9]
3. Re-encrypt the device with stronger keys. [10]
Fortunately, header resizing is usually unnecessary (otherwise it will abort the process).
sudo cryptsetup-reencrypt <device> -c aes-xts-plain64 -s 512 --use-directio
Abruptly disconnecting power can cause data loss. To safely pause the process (in case of system sleep/shutdown), cryptsetup can be suspended (e.g. by Ctrl+C
) and it will automatically restart from where it left off if temporary header files are present in the home directory. [11]
Encrypted Containers[edit]
Encrypted containers have the twin advantages of flexibility and mobility of folders, allowing more files to be added on the fly without needing re-compression and re-encryption (as in the case of using GPG).
Zulucrypt[edit]
Zulucrypt is the Linux answer to encrypted containers, making use of the reliable LUKS disk encryption specification. It is compatible with encrypted tomb files and also capable of reading and creating Truecrypt / VeraCrypt
containers. Note that Veracrypt containers only support a maximum password length of 64 characters, but LUKS has a maximum value of 32,767 (although a recently fixed bug had limited it to only 100 characters). [12] Until it is possible to use 20-word diceware passphrases to lock LUKS containers, it is recommended to use makepasswd to generate 43 character strings. These can then be pasted into a text file that is encrypted with GPG -- which does not have low character limits -- essentially creating a makeshift key file.
Containers grow dynamically as more data is added. Opened containers are mounted under /run/media/private/user
. More than one password may be added for access, making use of LUKS' key slots feature behind the scenes. [13]
For further usage instructions please consult the official manual.
Recommended Security Settings[edit]
Important Note: In order to have post-quantum resistance, the aes.xts-plain64.512.sha512
option is recommended for 256-bit encryption (the encryption key-size is split in two with XTS mode).
To view the container header, run. sudo cryptsetup luksDump --debug /home/user/<file_name>
With LUKS it is possible to nest containers of different encryption ciphers; for example, by placing a Serpent and Twofish container inside each other, wrapped in an outer AES one. Be sure to select the .xts-plain64.512.sha512
variants in all cases. Each inner layer should be 1 MB less than the outer layer to allow space for each container's respective encryption header.
The plausible deniability feature is available with volume types Normal+Hidden Truecrypt/Veracrypt
. Veracrypt volumes support crypto-cascades as a feature, so manual nesting is unnecessary. However, be warned that Truecrypt/Veracrypt volume types only support AES-128. Plain dm-crypt containers with a non-zero offset can be used to provide hidden volumes according to Zulucrypt's manual. This is yet to be tested by Kicksecure developers.
Additional Measures[edit]
Table: Additional Protective Measures
Measure | Description |
---|---|
Anti Evil Maid | Evil Maid Attack |
Erase LUKS Header |
This is a much quicker alternative to zeroing data on a HDD with Darik's Boot and Nuke (DBAN) Replace Alternatively, to accomplish the same goal without being prompted, run. sudo dd if=/dev/zero of=/dev/sdXY bs=1M count=2 This will overwrite the first two megabytes of the partition |
Killer | Killer [17] is a newer project that supports a range of trigger actions to shutdown a system in the case of tampering (disallowed changes) with USB, Bluetooth, AC, Battery, Disk Tray, and Ethernet. In the future, custom commands will be supported besides shutdown. [18] Once the program is packaged, it is intended to provide this software in the Kicksecure repositories for Debian hosts.
|
LUKS Suspend Scripts | On Linux hosts, there is one interesting solution for the risks posed by a computer in a suspended state; luks-suspend scripts. [19] This approach has some limitations because it is not yet packaged for Debian, and it has only been tested in the Ubuntu and Arch distributions. As of 2018, luks-suspend and keyslot nuking (mentioned below) is being merged upstream. [20] As of 2020 cryptsetup-suspend is now available in Debian Bullseye and Buster Backports, requiring Linux 5.6+. Keep in mind that while it protects LUKS keys by removing them from memory, other sensitive keys (GPG and SSH) and documents opened since last boot will still be present and extractable from RAM. Other daemons need to independently support key sanitization on suspend for enhanced protection. [21]
|
Magic Key Feature | In an emergency, Kicksecure is capable of powering-off the computer immediately via the Magic SysRq key feature. This is invoked by pressing the key combination: Alt + PrintScreen + o (lower-case letter). On bare-metal linux systems, the FDE passphrase is prompted after rebooting. [22] [23] [24]
|
Nuke Patch for cryptsetup |
|
Encrypted /boot Partition
|
An encrypted /boot partition has some advantages but it's imperfect because the bootloader is still necessarily unencrypted. To read more on this subject, see Pwning Past Whole Disk Encryption![]() ![]()
A signed |
Signed /boot Partition and Bootloader (Verified Boot)
|
Verified Boot in theory but not yet available for (security-focused) Linux distributions such as Debian, Kicksecure ™ and Qubes OS. |
Separate /boot Partition
|
When FDE is used on the host, it is inadvisable to keep any (unencrypted) partitions such as the /boot partition and bootloader on that same physical media which resides in a notebook which is sometimes left unattended. High risk users should move the /boot partition to a separate USB (or other external) media and the bootloader (Grub) should also be installed on the separate USB.
|
TRESOR Kernel Patch | Another useful protection is the TRESOR![]() ![]() |
USBKill |
|
Increase Costs of Brute-Force Attacks |
Encryption software uses Password-Based Key Derivation Functions (PBKDF) to slow down access attempts and provide some protection against low-entropy passphrases. Higher wait times, or iterations, can often be used. Iteration values are low by default for impatient users and weak processors, also making systematic attempts to access such protected data much easier for unauthorized users. Choosing how long wait times should be should depend on how long you are willing to wait to access your own data and how long someone else should wait if they try. Computing power gets cheaper with time, so what works today might be weak in the future.
sudo cryptsetup luksChangeKey --iter-time 10000 <device>
Argon2 iterations will vary depending on environment. sudo cryptsetup benchmark will show you how many iterations could be made in a requested 2000 ms. To customize wait times, specify (with values) --pbkdf --pbkdf-force-iterations --pbkdf-memory[33] --pbkdf-parallel (number of threads) when using the LuksFormat command. Be aware that incorrect values can make wait times extremely long.
|
Advice for Solid-state Drives and USB Storage[edit]
Unlike hard-disk drives (HDDs), overwriting data on SSDs is no longer effective in wiping the disk. [34] [35] For instance, it is insecure to rely upon a fast erase mechanism by overwriting the header and key-slot area. [36]
The most dire potential consequence would that old passwords are not erased, and for a significant period. Consider the following concrete example: someone changes their computer password because they noticed it was exposed to shoulder-surfing or CCTV. On a SSD, the old password may still be retrievable. If so, it could be used to decrypt the master key and all data. Secure overwriting is only guaranteed with magnetic disks that use non-journaling filesystems. [37]
Wear-leveling mechanisms like TRIM also leak information about the filesystem that can aid forensics. [38] [39] [40] [41] [42] [43] It is strongly recommended to keep TRIM disabled (the default) during Linux LUKS-encrypted installations.
Gnome Disks Utility[edit]
Gnome Disks utility provides a convenient way to manipulate LUKS container passphrases (including the host's) and the overlying filesystems. Previously, it could not be relied upon for encryption because it used AES-128 as a hardcoded default [44] [45] (as of Debian stretch). However, this bug was fixed in Debian buster so it now provides adequate post-quantum security. For encrypting removable media refer to this guide.
To install it, run.
sudo apt install gnome-disk-utility
See Also[edit]
Footnotes[edit]
- ↑ https://defuse.ca/truecrypt-plausible-deniability-useless-by-game-theory.htm
- ↑ https://embeddedsw.net/doc/physical_coercion.txt
- ↑ https://www.schneier.com/blog/archives/2009/07/laptop_security.html
- ↑
- ↑ https://github.com/storaged-project/libblockdev/issues/416
- ↑ https://github.com/vpodzime/libblockdev/commit/9dc4e2463860810cac5a1dbfb7064c47200260f6
- ↑ https://security.stackexchange.com/questions/109981/how-can-i-extract-the-encrypted-master-key-from-luks-header
- ↑ https://unix.stackexchange.com/questions/254017/how-to-interpret-cryptsetup-benchmark-results
- ↑ https://wiki.archlinux.org/title/dm-crypt/Device_encryption#Re-encrypting_an_existing_LUKS_partition
- ↑ https://man.archlinux.org/man/cryptsetup-reencrypt.8
- ↑ https://asalor.blogspot.com/2012/08/re-encryption-of-luks-device-cryptsetup.html
- ↑ https://github.com/mhogomchungu/zuluCrypt/issues/113
- ↑ https://crypto.stackexchange.com/questions/24022/luks-multiple-key-slots-whats-the-intuition
- ↑ https://en.wikipedia.org/wiki/Darik's_Boot_and_Nuke
- ↑ DBAN also warns:
While DBAN is free to use, there’s no guarantee your data is completely sanitized across the entire drive. It cannot detect or erase SSDs and does not provide a certificate of data removal for auditing purposes or regulatory compliance. Hardware support (e.g. no RAID dismantling), customer support and software updates are not available using DBAN.
- ↑ https://superuser.com/questions/1168928/wipe-luks-partition-in-pre-boot/1177362
- ↑
https://github.com/Lvl4Sword/Killer
- ↑
https://github.com/Lvl4Sword/Killer/issues/48
- ↑ https://github.com/vianney/arch-luks-suspend/issues/7
- ↑ https://blog.freesources.org/posts/2018/06/debian_cryptsetup_sprint_report/
- ↑ https://blog.freesources.org//posts/2020/08/cryptsetup-suspend/
- ↑ https://en.wikipedia.org/wiki/Magic_SysRq_key
- ↑ https://www.thegeekstuff.com/2008/12/safe-reboot-of-linux-using-magic-sysrq-key/
- ↑ https://phabricator.whonix.org/T553
- ↑
https://forums.whonix.org/t/full-disk-encryption-fde-emergency-shutdown-feature-testing-requested/2985
- ↑ https://github.com/offensive-security/cryptsetup-nuke-keys
- ↑ In most emergency situations there will not be enough time to reboot the computer and enter the dead-man switch passphrase.
- ↑ https://security.stackexchange.com/questions/89301/was-tresor-integrated-in-the-linux-kernel/119835#119835
- ↑ For example, this can be done quickly if the flash drive is attached to your wrist via a lanyard.
- ↑
- ↑ See RFC 2898
- ↑ Argon2 on LUKS can use up to four threads, but will lower the number and/or memory if the computer being used can't meet requirements.
- ↑ The pbkdf-memory option is limited to 4194304 kilobytes. Memory is freed after the unlock operation.
- ↑ https://web.archive.org/web/20201201150503/https://www.infosecisland.com/blogview/12153-Data-Remains-on-USB-and-SSDs-After-Secure-Erase.html
- ↑ https://www.theregister.com/2011/02/21/flash_drive_erasing_peril/
- ↑ cryptsetup FAQ - Section: 5.19 What about SSDs, Flash and Hybrid Drives?
- ↑ See 'shred' manual page
- ↑ https://asalor.blogspot.com/2011/08/trim-dm-crypt-problems.html
- ↑ https://wiki.archlinux.org/title/Dm-crypt/Specialties#Discard.2FTRIM_support_for_solid_state_drives_.28SSD.29
- ↑ https://wiki.archlinux.org/title/Solid_state_drive#dm-crypt
- ↑ https://web.archive.org/web/20160709174950/https://www.saout.de/pipermail/dm-crypt/2011-September/002019.html
- ↑ https://web.archive.org/web/20171122210051/https://www.saout.de/pipermail/dm-crypt/2012-April/002420.html
- ↑ https://web.archive.org/web/20150122113644/http://forensic.belkasoft.com/en/ssd-2014
- ↑ As tested by Kicksecure developer HulaHoop.
- ↑
- Debian bug report: Bumping up encryption to AES-256 by default
- Gnome disks utility upstream bug report: Bumping up encryption to AES-256 by default
- Debian bug report: Bumping up encryption to AES-256 by default
Unfinished: This wiki is a work in progress. Please do not report broken links until this notice is removed, use Search Engines First and contribute improving this wiki.

We believe security software like Kicksecure needs to remain open source and independent. Would you help sustain and grow the project? Learn more about our 10 year success story and maybe DONATE!