FirefoxRocks
May 15 2008, 03:56 AM
| | Ok I am disposing of my old Windows 98 computer and I am wiping out the hard drive for separate disposal. I downloaded Darik's Boot and Nuke and extracted it to a floppy disk. I have formatted my non-Windows partitions and deleted almost everything on the C: drive.
I booted up from the floppy and read through various screens explaining options and stuff. I started the wiping procedure and I was supposed to select a method of wiping. There was Quick, the method used by the RCMP, the method used by the Department of Defense (both quick and full) and Gutmann. I chose the full DoD method because I think that it should be sufficient.
Is this actually sufficient to erase the hard drive? Or should I do another wipe after this with another method? I'm not particularly clear on security of hard disks, I just know that the more overwrites the harder it is to retrieve data. |
Comment/Reply (w/o sign-up)
Darasen
May 15 2008, 04:40 AM
QUOTE(FirefoxRocks @ May 14 2008, 11:56 PM)  Ok I am disposing of my old Windows 98 computer and I am wiping out the hard drive for separate disposal. I downloaded Darik's Boot and Nuke and extracted it to a floppy disk. I have formatted my non-Windows partitions and deleted almost everything on the C: drive. I booted up from the floppy and read through various screens explaining options and stuff. I started the wiping procedure and I was supposed to select a method of wiping. There was Quick, the method used by the RCMP, the method used by the Department of Defense (both quick and full) and Gutmann. I chose the full DoD method because I think that it should be sufficient. Is this actually sufficient to erase the hard drive? Or should I do another wipe after this with another method? I'm not particularly clear on security of hard disks, I just know that the more overwrites the harder it is to retrieve data. Last I checked the DoD protocol is supposed to be to write zeros to every iota, including the boot sector, of the HD in question. That would certainly be sufficient to clean any data irretrievably.
Comment/Reply (w/o sign-up)
Jeigh
May 15 2008, 04:47 AM
if it actually performs the DoD level erase it completely swipes every bit of the drive to 0's, then 0's, then 0's, etc I believe something like 30 times ensuring that every single bit, even if there are errors in one or two of the swipes, is switched to a 0 by the end. This not only destroys the ability to access the table by killing the indexing system of the drive but literally wipes every single bit clean of whatever data was held there so regardless of efforts put forth there is no way to return the data to its original form. So if it's just one drive the DoD wipe should be fine, but if you are that worried...for whatever reason... then just do it again haha. If its just the one drive, and its a 98 era drive, it cant be that huge so shouldn't take that long. But if the only personal data is like game saves and some personal emails and stuff any type of drive wiping utility should be fine.
Comment/Reply (w/o sign-up)
ahaslam
May 15 2008, 06:54 AM
i think it wipes everything but i use a cipher but you have to clear the harddrive(format) install an os and then run cihper goes though files which you think are gone but are invisable ready to overwrite goes changing random ly the bits bit by bit but i like your method
Comment/Reply (w/o sign-up)
wutske
May 15 2008, 09:07 AM
Most methods do more than just overwriting every sector with zero's. Overwriting it with zero's is just one of the many steps that are taken, sometimes it overwrites the data with ones, fixed numbers, random numbers, ... Anyway, most methods are secure enough for most users, I don't think anybody is going to pay a few thousands of dollars to read out a disk that you've erased using one of those methods  . Doing a simple low level format should be enough too (overwrites every sector on your disk with zero's, only one step).
Comment/Reply (w/o sign-up)
Darasen
May 15 2008, 05:14 PM
QUOTE(wutske @ May 15 2008, 05:07 AM)  Most methods do more than just overwriting every sector with zero's. Overwriting it with zero's is just one of the many steps that are taken, sometimes it overwrites the data with ones, fixed numbers, random numbers, ... At the risk of nit picking a bit is either a 1 or a 0.
Comment/Reply (w/o sign-up)
levimage
May 18 2008, 09:02 PM
This also touches on the topic of erasing hard drives. I've always wondered say. If you don't have a shredding utility running in the background that handles all your file deleting chores, say someone were to delete a file, and empty the recycle bin. Sure you can recover the file depending or not if anything was recording on the hard drive location. So here is the question. Is there anything out there that will clean a drive with an OS already installed by writing zeros on a drives' empty space; thereby, getting rid of the no shredded files. If there is let me know, especially if it is something that is free or some form of open source. Thanks in advance. By the way I use CCleaner. with a recycle bin option but there are times I don't use it to delete files or extra copies of files.
Comment/Reply (w/o sign-up)
Jeigh
May 18 2008, 11:38 PM
I would imagine such a program exists... I dont know of any but they must. I mean you likely wouldn't want one that is constantly doing like a 30 passover wipe of every files storage location when you delete it but having one to run on occasion to clear out the debris would be a good way to ensure any sensitive data is gone forever after deleting it.
Comment/Reply (w/o sign-up)
Atomic0
Jun 7 2008, 08:36 AM
There is no perfect way of erasing the data and contents of your hard drive. Even if you wipe over you data again and again, there will always be a way to partially restore the data. However, such data recovery procedures are not commonly or readily available.
Comment/Reply (w/o sign-up)
xboxrulz
Jun 7 2008, 05:25 PM
This should wipe the drive clean of anything. However, why would you want to zero out the drive? The only reason is if you have very important data you don't want people to ever see. This is a rare move for many computer users. However, once you do it, there's no going back. xboxrulz
Comment/Reply (w/o sign-up)
iGuest
Aug 31 2009, 01:20 PM
minir changes to script
Wiping Out A Hard Drive
There was several small mistakes with the script (there should not be spaces near equal sign and there should not be dollar signs when setting the varibles). Here is the correct script:
{{{
#!/bin/bash
DRIVE="/dev/sda" # change this to your hard drive you wanna erase
COUNT=0
While [ $COUNT -lt 16 ] ; do
dd if=/dev/zero of=$DRIVE && dd if=/dev/urandom of=$DRIVE
COUNT=$[$COUNT+1]
echo $COUNT
Done
Dd count=1 bs=1024 if=/dev/zero of=$DRIVE # erase the first 1megabyte
}}}
Comment/Reply (w/o sign-up)
iGuest
Apr 18 2009, 10:59 PM
4-18-2009
Anyone who really wants to know how secure the methods are, should take the time to read Peter Gutmann's views---imo, he's still the leading authority, and by reading how it all REALLY works, instead of assuming that every program will always sufficiently do the job at hand, you have a hands on type feeling of what is going on in our hard drives---In fact some drives have programming built into them that may prevent 'erase' programs from being fully implemented and applied correctly...
What I walk away with out of his views are, today's modern drives have a much higher density than they used to, so recoverability (especially after re-writes) becomes increasingly difficult even for the most advanced of forensic tools---older drives are incapable themselves of being able to read or write from an EXACT location, so the space in between tracks was much wider (that's why older drives the same physical size couldn't hold as much) so this means that it was possible to recover data after (some reported to be over 100) rewrites...
What it boils down to is magnetics, and magnetic ranges being able easy to predict, and through using sort of 'reverse engineering' calculations it be possible to piece data back together---this is of course easier with old drives, and very tough with newer drives as there is virtually no track space in between...
Writing your disk with simply 1's, 0's, or even a combination of, isn't going to create the same magnetic resonance as genuine data will, so the method by which the drive itself stores your information (each drive may use a different encoding scheme) has to be targeted and 'typical' encoding streams used...
I assume this information from the Gutmann source:
http://www.Cs.Auckland.Ac.Nz/~pgut001/pubs/secure_del.html
-reply by Secure For Real
Comment/Reply (w/o sign-up)
Gr33nN1nj4
Aug 20 2008, 08:29 PM
Yes it is secure as what happenes is this First run 000000000000 2nd run 4gv3h904hgw4 4th run 000000000000 3rd run 32r98hg43g[34 and so forth, the reason i brought up encryption is that is one of the main causes people zero out their hard drive. but beware this method takes a while to run then just running it once, which the NSA has said 32 times is best as most NON government software can't read that far down and they actually have to take the drive to the labs and take them apart to read that far  . but the commands again (32times in 1 shot if i can recall my bash scripting) NOTE: DO NOT RUN THIS IT WILL WIPE OUT YOUR HARD DRIVE BEYOND THE POINT OF RECOVERY CODE #!/bin/bash $DRIVE = /dev/sda # change this to your hard drive you wanna erase $COUNT = 0 while [ $COUNT -lt 16 ] : do dd if=/dev/zero of=$DRIVE && dd if=/dev/urandom of=$DRIVE COUNT = $[$COUNT+1] done dd count=1 bs=1024 if=/dev/zero of=$DRIVE # erase the first 1megabyte to clear the MBR and partition table EDIT: save as blah.sh and and chmod +x it so you can run it, and run it as root and goto sleep and when you wake up it will be cleared. (i had a guy double check the script for me) it will erase your hard drive 32 times and clear out the MDR and partations of any garbage the last urandom did
Comment/Reply (w/o sign-up)
FirefoxRocks
Aug 20 2008, 02:56 AM
QUOTE(Gr33nN1nj4 @ Aug 17 2008, 05:33 PM)  (on topic of OP) When I wipe hard drives, I use a live linux cd/floppy (a linux floppie should work as most of them will have dd and the device tree) and do dd if=/dev/urandom of=/dev/<hard drive> then collow it with dd if=/dev/zero of=/dev/<hard drive>, I do that a couple of times esp if I am setting up a encrypted partition, that way if they try to look at the drive down some layers all they see is garbage or null bytes. I'm sorry but that is much too confusing. Perhaps you could explain that more? I'm not trying to encrypt a partition here, and is the method you mentioned really secure?
Comment/Reply (w/o sign-up)
Gr33nN1nj4
Aug 17 2008, 10:33 PM
(on topic of OP) When I wipe hard drives, I use a live linux cd/floppy (a linux floppie should work as most of them will have dd and the device tree) and do dd if=/dev/urandom of=/dev/<hard drive> then collow it with dd if=/dev/zero of=/dev/<hard drive>, I do that a couple of times esp if I am setting up a encrypted partition, that way if they try to look at the drive down some layers all they see is garbage or null bytes.
Comment/Reply (w/o sign-up)
Similar Topics
Keywords : wiping, hard, drive, secure, method,
- Choosing An Extremely Secure Password - Examples
(16)
How To Set Up A Secure Socket Layer (ssl) Into Your Website?
Hope somebody gives a quick tutorial to add SSL to a website (5) Could anyone give a link or any information of the steps to do, towards implementing SSL into a
website?? I looked everywhere in this forum, and I could not find an understandable step by step
list...I think we all will be highly thankful if somebody gives us some light into this
topic..thanks....
Sygate Still Secure?
Downloaded the latest version they released, before being bought by Sy (4) Hi there, First off a few days ago I switched from Linux to Windows (don't ask me why!) and
trying to get it secure. Second, don't know if this is the right forum, but it seemed the best
choice to me! Alright, now my question: Is Sygate Personal Firewall still secure? (it's quite
dated now!) Symantec bought/destroyed Sygate. But I downloaded Sygate Personal Firewall from
oldversion.com , it's the last version they released and it's the firewall that best suites
my needs. I'm behind a router (with firewall) at the moment, but i like to be a DM....
Have You Heard Of Secure Shell (SSH) ?
info (3) Hi all, Have u heard about SSH. Its a network service which runs at port no. 22 Its secure in the
sense that it transfers data using encryption. The user name and password are sent after encrypting
so that the sniffer can't get hold of them. More interestingly, it has a feature that allows
the user to forget password and use encryption as the basis of aunthetication. There is a very
interesting tool known as Putty. Putty allows you to generate a pair of public and private keys.
The user submits the public key to the server. The server stores the user name and h....
Looking for wiping, hard, drive, secure, method,
|
See Also,
*SIMILAR VIDEOS*
Searching Video's for wiping, hard, drive, secure, method,
|
advertisement
|
|