An organization is preparing to decommission an enterprise storage array equipped with NVMe Solid-State Drives (SSDs) that held proprietary source code. Security policy requires media sanitization to a Purge standard to allow drive reuse within a lower-security tier. A technician proposes applying a commercial degaussing wand to the drives followed by a standard single-pass zero-fill overwrite. Which of the following technical evaluations best explains why this proposed sanitization plan is flawed?
- Degaussing is ineffective on flash memory storage, and software overwriting cannot reliably target data stored in wear-leveling reserves or bad block pools.Answer
- BDegaussing permanently destroys the NAND flash controller firmware, which prevents the drive from executing the mandatory second-pass zero-fill overwrite.
- CDegaussing is required for solid-state storage to clear persistent electrical charges, but a single-pass zero-fill must be replaced by low-level OS formatting.
- DDegaussing successfully purges all logical data sectors on solid-state drives, making the subsequent software overwrite redundant for compliance.
Answer
Degaussing is ineffective on flash memory storage, and software overwriting cannot reliably target data stored in wear-leveling reserves or bad block pools.
The option identifying that degaussing is ineffective on flash memory and that software overwriting cannot reach wear-leveling reserves is correct. SSDs store data using electrical charges in NAND flash cells, which are immune to magnetic degaussing. Furthermore, standard zero-fill overwrite software operates on logical block addresses (LBAs) provided by the OS and cannot sanitize data residing in over-provisioned blocks, retired sectors, or wear-leveling pools managed internally by the SSD controller. Sanitizing SSDs for reuse requires hardware-level commands such as NVMe Sanitize or cryptographic erase.
Step-by-Step Solution
Key Concept
Selecting media-appropriate data sanitization and disposal methods for magnetic versus solid-state media.