SDelete 1.4

SDelete 1.4 Screenshot One feature of Windows NT/2000's (Win2K) C2-compliance is that it implements object reuse protection.

Developer:   Mark Russinovich
      software by Mark Russinovich →
Price:  0.00
License:   Freeware
File size:   0K
Language:   
OS:   Windows Vista (?)
Rating:   0 /5 (0 votes)

One feature of Windows NT/2000's (Win2K) C2-compliance is that it implements object reuse protection. This means that when an application allocates file space or virtual memory it is unable to view data that was previously stored in the resources Windows NT/2K allocates for it. Windows NT zero-fills memory and zeroes the sectors on disk where a file is placed before it presents either type of resource to an application. However, object reuse does not dictate that the space that a file occupies before it is deleted be zeroed. This is because Windows NT/2K is designed with the assumption that the operating system controls access to system resources. However, when the operating system is not active it is possible to use raw disk editors and recovery tools to view and recover data that the operating system has deallocated. Even when you encrypt files with Win2K's Encrypting File System (EFS), a file's original unencrypted file data is left on the disk after a new encrypted version of the file is created.

The only way to ensure that deleted files, as well as files that you encrypt with EFS, are safe from recovery is to use a secure delete application. Secure delete applications overwrite a deleted file's on-disk data using techiques that are shown to make disk data unrecoverable, even using recovery technology that can read patterns in magnetic media that reveal weakly deleted files. SDelete (Secure Delete) is such an application. You can use SDelete both to securely delete existing files, as well as to securely erase any file data that exists in the unallocated portions of a disk (including files that you have already deleted or encrypted). SDelete implements the Department of Defense clearing and sanitizing standard DOD 5220.22-M, to give you confidence that once deleted with SDelete, your file data is gone forever. SDelete is presented with full source code so that you can verify yourself that it works as advertized. Note that SDelete securely deletes file data, but not file names located in free disk space.

SDelete is a command line application which takes a number of options. In any given use, it helps you delete one or more files and/or directories, or to cleanse the free space on a logical disk. SDelete accepts wild card characters as part of the directory or file specifier.

Usage: sdelete [-p passes] [-s] [-q]
sdelete [-p passes] -z [drive letter]

-p passes
Specifies number of overwrite passes
-s
Recurse subdirectories
-q
Don't print errors (quiet)
-z
Cleanse free space

Securely deleting a file that has no special attributes is relatively straight-forward: the secure delete program simply overwrites the file with the secure delete pattern. What is more tricky is securely deleting Windows NT/2K compressed, encrypted and sparse files, and securely cleansing disk free spaces.

Compressed, encrypted and sparse are managed by NTFS in 16-cluster blocks. If a program writes to an existing portion of such a file NTFS allocates new space on the disk to store the new data and after the new data has been written, deallocates the clusters previously occupied by the file. NTFS takes this conservative approach for reasons related to data integrity, and in the case of compressed and sparse files, in case a new allocation is larger than what exists (the new compressed data is bigger than the old compressed data). Thus, overwriting such a file will not succeed in deleting the file's contents from the disk.

To handle these types of files SDelete relies on the defragmentation API. Using the defragmentation API SDelete can determine precisely which clusters on a disk are occupied by data belonging to compressed, sparse and encrypted files. Once SDelete knows which clusters contain the file's data, it can open the disk for raw access and overwrite those clusters.

Cleaning free space presents another challenge. Since FAT and NTFS provide no means for an application to directly address free space, SDelete has one of two options. The first is that it can, like it does for compressed, sparse and encrypted files, open the disk for raw access and overwrite the free space. This approach suffers from a big problem: even if SDelete were coded to be fully capable of calculating the free space portions of NTFS and FAT drives (something that's not trivial), it would run the risk of collision with active file operations taking place on the system. For example, say SDelete determines that a cluster is free, and just at that moment the file system driver (FAT, NTFS) decides to allocate the cluster for a file that another application is modifying. The file system driver writes the new data to the cluster, and then SDelete comes along and overwrites the freshly written data: the file's new data is gone. The problem is even worse if the cluster is allocated for file system metadata since SDelete will corrupt the file system's on-disk structures.

The second approach, and the one SDelete takes, is to indirectly overwrite free space. First, SDelete allocates the largest file it can. SDelete does this using non-cached file I/O so that the contents of the NT file system cache will not be thrown out and replaced with useless data associated with SDelete's space-hogging file. Because non-cached file I/O must be sector (512-byte) aligned, there might be some left over space that isn't allocated for the SDelete file even when SDelete cannot further grow the file. To grab any remaining space SDelete next allocates the largest cached file it can. For both of these files SDelete performs a secure overwrite, ensuring that all the disk space that was previously free becomes securely cleansed.

On NTFS drives SDelete's job isn't necessarily through after it allocates and overwrites the two files. SDelete must also fill any existing free portions of the NTFS MFT (Master File Table) with files that fit within an MFT record. An MFT record is typically 1KB in size, and every file or directory on a disk requires at least one MFT record. Small files are stored entirely within their MFT record, while files that don't fit within a record are allocated clusters outside the MFT. All SDelete has to do to take care of the free MFT space is allocate the largest file it can - when the file occupies all the available space in an MFT Record NTFS will prevent the file from getting larger, since there are no free clusters left on the disk (they are being held by the two files SDelete previously allocated). SDelete then repeats the process. When SDelete can no longer even create a new file, it knows that all the previously free records in the MFT have been completely filled with securely overwritten files.

To overwrite file names of a file that you delete, SDelete renames the file 26 times, each time replacing each character of the file's name with a successive alphabetic character. For instance, the first rename of "foo.txt" would be to "AAA.AAA".

The reason that SDelete does not securely delete file names when cleaning disk free space is that deleting them would require direct manipulation of directory structures. Directory structures can have free space containing deleted file names, but the free directory space is not available for allocation to other files. Hence, SDelete has no way of allocating this free space so that it can securely overwrite it.

tags the file  free space  the disk  file system  secure delete  mft record  files sdelete  the free  file data  the new  file names  that you  files that  

SDelete 1.4 screenshot


Download SDelete 1.4

 Download SDelete 1.4


Authors software

Bluescreen 3.2 Bluescreen 3.2
Mark Russinovich

One of the most feared colors in the NT world is blue.

Du v 1.00 r 7 Du v 1.00 r 7
Mark Russinovich

Du (disk usage) will report the disk space usage for the directory you specify.

Sigcheck 1.0 Sigcheck 1.0
Mark Russinovich

Verify that images are digitally signed and dump version information with this simple command-line utility called Sigcheck.

AccessChk 1.03 AccessChk 1.03
Mark Russinovich

As a part of ensuring that they've created a secure environment Windows administrators often need to know what kind of accesses specific users or groups have to resources including files, directories, Registry keys, and Windows services.

CacheSet 1.0 CacheSet 1.0
Mark Russinovich

CacheSet is an applet which helps you manipulate the working-set parameters of the system file cache.

Similar software

SDelete 1.4 SDelete 1.4
Mark Russinovich

One feature of Windows NT/2000's (Win2K) C2-compliance is that it implements object reuse protection.

Disk Redactor 2.1.457 Disk Redactor 2.1.457
CEZEO software

Disk Redactor is a WIPE utility, that prevent restoration of the old ( deleted ) files at your disks.

NTFS Undelete 0.9 NTFS Undelete 0.9
A-FF Labs

NTFS Undelete is a freeware application which will allow you to recover deleted files.

Free File Wipe 1.6 Free File Wipe 1.6
Recovery-Review.com

Recovery-review.

Simple File Shredder 3.2 Simple File Shredder 3.2
Scar5 Software

Simple File Shredder is an application that securely deletes your files so they can never be recovered.

NTFSInfo 1.0 NTFSInfo 1.0
Mark Russinovich

NTFSInfo is a little applet that shows you information about NTFS volumes.

DeleteOnClick 1.0 DeleteOnClick 1.0
2BrightSparks

When you delete a file or folder using Windows, it is usual for the file or folder to be moved to the Recycle Bin (Trash).

No File Recovery 2.05 No File Recovery 2.05
SoftDD

Wipes all open space on your hard drive, so no previously deleted files can be recovered.

Pandora Recovery 0.9.33 Beta Pandora Recovery 0.9.33 Beta
Pandora Corp

Pandora Recovery is a powerful free tool to attempt recovery of permanently deleted files.

Karen's Disk Slack Checker 2.5.2 Karen's Disk Slack Checker 2.5.2
Karen Kenworthy

Because of the way Windows allocates disk space, almost every file is given more disk space than it needs.

Other software in this category

SafeCopy Free! 2.6.1 SafeCopy Free! 2.6.1
Elwinsoft

SafeCopy Free! is a program that manages to copy files and keep date/time stamps.

Rename It 3.05b Build 0916 Rename It 3.05b Build 0916
Kobonet.com

Rename It is an useful software application that renames files on your computer.

TreeSize 2.0.0.64 TreeSize 2.0.0.64
Joachim Marder

TreeSize will tell you where precious HDD space has gone to.

fsum 2.52 fsum 2.52
SlavaSoft Inc

fsum is a free fast command line utility for file checksum generation/verification.

KFK 3.9.1.32 KFK 3.9.1.32
The Katarn Corp

KFK was created as a file splitter/rebuilder with CD burning capabilities.