secure delete 1.0
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 44924
Secure Delete 1.0.1
Delete confidential files so that even retrieving them they be no more readable/viewable more>>
Delete confidential files so that even retrieving them they be no more readable/viewable Secure Delete will enable you to erase confidential files so that even retrieving them they be no more readable/viewable.
<<less Download (902KB)
Added: 2006-11-05 License: Freeware Price:
1122 downloads
Secure Deletion 1.0
Secure Deletion - the tool you need if you have to securely delete a file more>>
Secure Deletion - the tool you need if you have to securely delete a file SecureDelete is the tool you need if you have to securely delete a file.
SecureDelete can delete only one file at a time.
Selecting Options | Disable warning will prevent a dialog appearing asking to confirm your desire to delete the file. You must set this option each time you use SecureDelete since the program is too simple to use Windows Registry to save persistent data.
If you want to implement such a functionality, write your own SecureDelete application and implement such
additional functions as you find appropriate.
<<lessSecureDelete can delete only one file at a time.
Selecting Options | Disable warning will prevent a dialog appearing asking to confirm your desire to delete the file. You must set this option each time you use SecureDelete since the program is too simple to use Windows Registry to save persistent data.
If you want to implement such a functionality, write your own SecureDelete application and implement such
additional functions as you find appropriate.
Download (296KB)
Added: 2007-02-01 License: Freeware Price:
1011 downloads
SDelete 1.4
Securely overwrite your sensitive files and cleanse your free space of previously deleted files more>>
Securely overwrite your sensitive files and cleanse your free space of previously deleted files One feature of Windows NT/2000s (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 Win2Ks Encrypting File System (EFS), a files 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 files 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
Dont 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 files 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 files 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 thats 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 files new data is gone. The problem is even worse if the cluster is allocated for file system metadata since SDelete will corrupt the file systems 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 SDeletes space-hogging file. Because non-cached file I/O must be sector (512-byte) aligned, there might be some left over space that isnt 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 SDeletes job isnt 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 dont 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 files 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.
<<lessThe 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 files 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
Dont 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 files 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 files 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 thats 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 files new data is gone. The problem is even worse if the cluster is allocated for file system metadata since SDelete will corrupt the file systems 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 SDeletes space-hogging file. Because non-cached file I/O must be sector (512-byte) aligned, there might be some left over space that isnt 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 SDeletes job isnt 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 dont 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 files 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.
Download (24KB)
Added: 2006-05-27 License: Freeware Price:
912 downloads
Secure System Pro 1.02
Secure System Pro is a useful and advanced tool for users in that it helps control how their XP OS functions without having to delve into the deep, dark recesses of the registry. more>> <<less
Download (1.7MB)
Added: 2008-06-04 License: Freeware Price:
downloads
DP Secure Wiper 1.03
This little program wipe file(s) and folder secure. more>>
This little program wipe file(s) and folder secure. DP Secure Wiper is a simple little program that will wipe file(s) and folder secure.
Supports the following methods: Normal delete (not secure), Single overwrite, DoD wipe (US Department of Defense of Defense 5220.22 compliant wiping) and Gutmanns Maximum Security 35 pass wiping method.
This program is free and it supports drag and drop.
<<lessSupports the following methods: Normal delete (not secure), Single overwrite, DoD wipe (US Department of Defense of Defense 5220.22 compliant wiping) and Gutmanns Maximum Security 35 pass wiping method.
This program is free and it supports drag and drop.
Download (123KB)
Added: 2007-07-26 License: Freeware Price:
830 downloads

Secure Eraser 2.202 SE
Software for secure file deletion on Windows systems. more>> Windows file deletion functions delete files just apparently: the underlying hard disk sectors, containing your sensitive data, are neither being emptied nor overwritten, thus making it easy to restore previously deleted files even without advanced technical knowledge.
Applying five well-known and acknowledged deletion standards Secure Eraser deletes your sensitive data irretrievably - and offers an easy to use user interface.
Additionally to overwriting sensitive files with random data Secure Eraser supports other acknowledged deletion standards (US DoD 5220.22-M E, US DoD 5220.22-M ECE, German standard, Peter Gutmann standard).
Secure Eraser creates context menu entries in context menus for files, folders and recycle bin to allow direct access to secure file deletion functions.<<less
Download (2.47MB)
Added: 2008-09-13 License: Freeware Price:
411 downloads
Secure .2
Managing all you security details, from usernames and passwords to websites, PIN numbers and credit card details. more>>
Managing all you security details, from usernames and passwords to websites, PIN numbers and credit card details. This upgrade to the popular Secure product provides simple access to all your personal information.
<<less Download (502K)
Added: 2003-07-06 License: Freeware Price: $0.00
2394 downloads

AHHB Power Delete 1
Remove unwanted files from your computer completely. more>>
AHHB Power Delete 1 provides you a powerful tool which helps you remove unwanted files from your computer completely. Delete your important unwanted files securely and disables the ability to restore them using any Delete-File-Restoring Applications.
Download (1.7MB)
Added: 2006-05-31 License: Freeware Price:
289 downloads
Remote Registry Delete 1.0
Remote Registry Delete is a utility for remotely removing subkeys and values from registry LOCAL_MACHINE key more>>
Remote Registry Delete 1.0 is a utility for remotely removing subkeys and values from registry LOCAL_MACHINE key. Created specially to be used in batch files.
Download (33.2KB)
Added: 2004-01-19 License: Freeware Price:
downloads

Secure Eraser 2.2 SE
Software for secure file deletion on Windows systems. more>> Windows file deletion functions delete files just apparently: the underlying hard disk sectors, containing your sensitive data, are neither being emptied nor overwritten, thus making it easy to restore previously deleted files even without advanced technical knowledge.
Applying five well-known and acknowledged deletion standards Secure Eraser deletes your sensitive data irretrievably - and offers an easy to use user interface.
Additionally to overwriting sensitive files with random data Secure Eraser supports other acknowledged deletion standards (US DoD 5220.22-M E, US DoD 5220.22-M ECE, German standard, Peter Gutmann standard).
Secure Eraser creates context menu entries in context menus for files, folders and recycle bin to allow direct access to secure file deletion functions.<<less
Download (2.47MB)
Added: 2008-08-25 License: Freeware Price: Free
548 downloads

Secure FTP 2.5.21
Secure FTP is considered as a convenient and efficient client package that allows for an secure transactions to be made to an FTP server that supports an implicit SSL connection. more>> <<less
Download (2.6MB)
Added: 2009-12-16 License: Freeware Price: Notavailable
downloads
Delete Files 2.1.0
Delete Files is a privacy and clean-up utility that eliminates all these tracks from your computer. Cleaning up the history of your activities requires tedious hours of manually removing each history file or entry. more>> <<less
Download (2.30MB)
Added: 2009-04-18 License: Freeware Price: $0
27 downloads
SuperShredder 1.01
SuperShredder gives you the ability to securely delete files more>>
SuperShredder gives you the ability to securely delete files SuperShredder gives you the ability to securely delete files.
When you delete a file from your system (and remove it from your Recycle Bin) the contents can still be retrieved by someone who is knows what theyre doing - they can even potentially recover data thats been overwritten!
Now this doesnt really matter if youre just deleting some unused Word documents, but if you deal with sensitive data such as encrypted information, then its VERY important that these files be securely deleted... Thats where AnalogX SuperShredder comes in!
SuperShredder gives you the ability to delete files using not only common methods such as Gutmann and NISPOM (DoD), but can be completely customized to give you all the security and/or performance you may need.
It can receive files via drag-and-drop onto the application or the icon, selecting files from inside the program, command line, and can even add a shortcut to your Send To menu inside the Windows Explorer so its simple to delete files in a secure and convenient fashion.
<<lessWhen you delete a file from your system (and remove it from your Recycle Bin) the contents can still be retrieved by someone who is knows what theyre doing - they can even potentially recover data thats been overwritten!
Now this doesnt really matter if youre just deleting some unused Word documents, but if you deal with sensitive data such as encrypted information, then its VERY important that these files be securely deleted... Thats where AnalogX SuperShredder comes in!
SuperShredder gives you the ability to delete files using not only common methods such as Gutmann and NISPOM (DoD), but can be completely customized to give you all the security and/or performance you may need.
It can receive files via drag-and-drop onto the application or the icon, selecting files from inside the program, command line, and can even add a shortcut to your Send To menu inside the Windows Explorer so its simple to delete files in a secure and convenient fashion.
Download (156KB)
Added: 2006-04-11 License: Freeware Price:
1321 downloads

Super Fdisk 1.0
Quickly and easily create, delete, format partitions without destroying data more>> Super Fdisk is the free DOS version of EASEUS Partition Manager. With Super Fdisk you can quickly and easily create, delete, format partitions in DOS system.<<less
Download (5.40MB)
Added: 2008-07-21 License: Freeware Price: Free
683 downloads

Delete Tree 1.0.0.4
A quick and easy 32-bit console application more>> A quick and easy 32-bit console application that deletes an entire directory structure and all files that it contains.<<less
Download (41KB)
Added: 2008-07-28 License: Freeware Price: Free
462 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above secure delete 1.0 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed
