You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as more SSDs are integrated in modern PCs, it's also nessesary to wipe them for privacy. Unfortunately the flash logic makes it impossible to predict a full erase of all cells. Also you try to avoid unnessary write cycles to the chips itself.
This requires calling a special ATA command and unlocking the device, which tend to be an annoying manual task....
So it would be nice, if DBAN could detect SSDs and make use of the described procedure instead of wiping all blocks.
The text was updated successfully, but these errors were encountered:
make use of the described procedure instead of wiping all blocks.
Don't rely solely "ATA Secure Erase". According to the paper by Michael Wei et al, some SSD implementations of "ATA Secure Erase" is buggy and cannot erase data properly, but if implemented properly, it is effective. Also, it showed normally overwriting the entire disk twice was sufficient to sanitize the disk.
I recommended a hybrid approach for SSD erasure: first it does a 3-pass overwrites to the SSD like any other HDDs, and issues the "ATA Secure Erase" instruction afterwards.
Hi,
as more SSDs are integrated in modern PCs, it's also nessesary to wipe them for privacy. Unfortunately the flash logic makes it impossible to predict a full erase of all cells. Also you try to avoid unnessary write cycles to the chips itself.
This requires calling a special ATA command and unlocking the device, which tend to be an annoying manual task....
So it would be nice, if DBAN could detect SSDs and make use of the described procedure instead of wiping all blocks.
The text was updated successfully, but these errors were encountered: