Appearance
โ Trace Erasure โ
- r/antiforensics/ - Reddit antiforensics.
๐ซ Forensic โ
DANGER
- The best option is to use SSD encryption. However, if you want to add an extra layer of security, you can also erase your SSD beforehand.
- Erase with
/dev/zero: On SSDs, simple overwriting may not erase all blocks due to compression and wear leveling. Using/dev/urandomfills the disk with random data, reducing this risk.
- Awesome Anti Forensic - Resources list.
- Anti Forensic - Articles about anti forensic.
- Anti Forensic - Disk encryption.
๐ ๏ธ Tools โ
๐ง Linux โ
- DBAN - For HDD only.
- How to erase securely disk with Hdparm ?
- How to hard disk encryption with cryptsecure ?.
๐ช Windows โ
โก Fast Commands โ
Encrypt SSD quickly.
bash
cryptsetup luksFormat /dev/sdX --key-file <(head -c 64 /dev/urandom)Some tools for erasing data.
bash
shred -v -n 3 -z /dev/sdX
blkdiscard blkdiscard /dev/sdX
hdparm --user-master u --security-erase NULL /dev/sdX
dd if=/dev/urandom of=/dev/sdX bs=1M status=progress