Home     Blog

How to Securely Erase Data

When you erase a file on your computer, the actual data in the file is not overwritten. The space utilized by that file is simply marked as “free” for use by other data.

Once other data is written in that space, the original data becomes unrecoverable — by most people.

Those little bits of magnetic media that store 0′s and 1′s are a bit more complex, however. With sensitive and sophisticated equipment, it is theoretically possible to recover data even after it has been written over.

The method to securely erase data is to write over the same physical spot on the hard disk multiple times with different patterns, effectively obliterating the magnetic signatures of the data which was once there.how to securely erase data How to Securely Erase Data

Standards for Securely Erasing Data

The Defense Security Service (DSS) of the Department of Defense (DoD) has published standards for the secure deletion of magnetic media in the National Industrial Security Program Operating Manual (NISPOM): Operating Manual Supplement, as modified by the Department of Defense Overprint.

Peter Gutmann of the University of Auckland has written a better paper on the topic, Secure Deletion of Data from Magnetic and Solid-State Memory.

Software to Securely Erase Data

Many programs are available that are designed to securely erase data from magnetic media:

Windows

Unix

Bootable

VN:F [1.9.17_1161]
Rating: 7.0/10 (1 vote cast)
How to Securely Erase Data, 7.0 out of 10 based on 1 rating
Follow Will.Spencer on

Comments (1)

 

  1. shyam says:

    i need java codings for secured deletion of data.

    VA:F [1.9.17_1161]
    Rating: 0.0/5 (0 votes cast)

Leave a Reply

Related Posts

  • Data Link Layer

    The Data Link Layer is layer two of the OSI model. It resides above the Physical Layer and below the Network Layer. The Data Link Layer is responsible for communications between adjacent network nodes. Hubs and switches operate at the Data Link Layer. The Data Link Layer is logically divided into two sub-layers: The Media [...]...


  • Data Error Cyclic Redundancy Check

    The “Data Error Cyclic Redundancy Check (CRC)” is a problem with the mathematical process the computer does in order to ensure that data is properly transferred from a particular source to a specified destination. During the cyclic redundancy check, the computer determines if the data being transferred is not damaged. When users get a “Data [...]...


  • Data Dictionary

    A data dictionary is an integral part of a database. It holds information about the database and the data that it stores, i.e., the meta-data. Any well designed database will surely include a data dictionary as it gives database administrators and other users easy access to the type of data that they should expect to [...]...


  • Data Warehouse

    A data warehouse is a place where data is stored for archival, analysis, and security purposes. Usually a data warehouse is either a single computer or many computers (servers) tied together to create one giant computer system. Data consists of raw data or formatted data. It can be on various types of topics including the [...]...


  • Java Data Types

    Java has two groups of data types, primitive data types and object references. Java Primitive Data Types Data Type Purpose Contents Default Value* boolean Truth value true or false fales char Character Unicode characters u0000 byte Signed integer 8 bit two’s complement (byte) 0 short Signed integer 16 bit two’s complement (short) 0 int Signed [...]...