Wiping Out A Hard Drive - Most secure method?

Pages: 1, 2
free web hosting

Latest Entry: (Post #18) by Gr33nN1nj4 on Aug 20 2008, 08:29 PM. (Line Breaks Removed)
Yes it is secure as what happenes is thisFirst run 0000000000002nd run 4gv3h904hgw44th run 0000000000003rd run 32r98hg43g[34and 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 rea... read more.
Express your Opinion! Contribute Knowledge.

Free Web Hosting > Computers & Tech > Security issues & Exploits

Wiping Out A Hard Drive - Most secure method?

FirefoxRocks
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.

Reply

Darasen
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.

 

 

 


Reply

Jeigh
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.

Reply

ahaslam
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

Reply

wutske
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 tongue.gif . Doing a simple low level format should be enough too (overwrites every sector on your disk with zero's, only one step).

Reply

Darasen
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.

Reply

levimage
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. tongue.gif

Reply

Jeigh
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.

Reply

Atomic0
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.

Reply

xboxrulz
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

Reply

Latest Entries

Gr33nN1nj4
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 smile.gif.

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

Reply

FirefoxRocks
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?

Reply

Gr33nN1nj4
(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.

Reply

levimage
QUOTE(levimage @ Jul 16 2008, 04:06 PM) *
Like the old LaserJet Printers... HP i believe. I remember them from back in my high school days. Also some Apple Laserwriters (the laser printers) as support adding SIMM(s). If you've ever asked someone who managed a computer lab with network laser printers or someone who ran a print shop back in the day, they'll tell you the same.


You might have to update the firmware on the NIC enabled printers for the printer to recognize the new amount of ram. Then upload the fonts you most commonly use.

Reply

levimage
Like the old LaserJet Printers... HP i believe. I remember them from back in my high school days. Also some Apple Laserwriters (the laser printers) as support adding SIMM(s). If you've ever asked someone who managed a computer lab with network laser printers or someone who ran a print shop back in the day, they'll tell you the same.

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Similar Topics

Keywords : wiping, hard, drive, secure, method,

  1. How To Erase Dell Inspiron Hard-drive Password
    (1)
  2. Test Drive
    xbox 360 game (1)
    this is one of my favorite games on the 360. you start with a house that you can afford and you
    choose a car that you can afford. each car that you buy's allows you to enter different races.
    Their are also single (like time-trial) races. in order to beat the game you must have all houses
    and all cars and you must have placed 1st in every single race!!! in my opinion this
    game is very challenging and will keep you entertained for hours.....
  3. How To Drive Traffic To A Forum
    (3)
    What is the best way to Drive Traffic to a Forum, and Get users to actually Register? Are there any
    Forum Specific Directories or Search Engines I should submit my Forum too, or should I just submit
    my Forum to the regular Directories and search engines? Also, I was reading an article on Google
    that says I should create Multiple accounts on the Forum for myself, and use them to get the Forum
    started, is this a good idea?....
  4. How To Erase Your Hard Drive
    (2)
    There are several ways to erase the contents of a hard drive. But the technique you use will depend
    on what you want to use the hard drive for afterwards. For instance, if you just plan on
    reinstalling Windows, it isn’t necessary to do a Department of Defense level shredding of your data
    Erase your hard drive for reinstalling Windows In newer versions of Windows, you can simply boot
    to the Windows CD and during the setup process, tell Windows to delete the current partition and
    install on the new partition. This will wipe out what you already had and replace it with a....
  5. Mysql - So Hard
    Come in here if you think MySQL is soo hard! (14)
    Doesn't anybody think MySQL is so hard to code? I mean think about it, you need loads of
    databases just for one little script and you have to type things in like ;Host-Username:
    (blahblah) ;Host-Password: (blahblah) ;Host-DatabaseName: (blahblah) Ok, that MySQL code was
    random, and it is alot harder than that. If you have expierenced it being hard, you are free to
    post right in here, mate.....
  6. How Can I Rip A Dvd To My Hard Drive Under Linux?
    more (0)
    There are several simple dvd-ripping tools available. vobcopy can be used. First you'll want to
    mount your dvd (assuming the mount point is /mnt/dvd and is set up in your /etc/fstab): Code:
    $ mount /mnt/dvdThen you can rip the main title using vobcopy: Code: vobcopy -i /mnt/dvdThis
    will rip the main title only, similar to IFO-mode in DVD Decrypter. if you want to rip the entire
    disc preserving structure, use Code: vobcopy -i /mnt/dvd -m.You can also use dvdbackup from the
    dvd-create project to rip dvds in a similar fashion. 2. How can I backup a DVD using f....
  7. Help! Usb Flash Drive
    windows doesn't recognize it anymore... (10)
    So my uncle asks me to format his computer and install windows and stuff. So I did like I do with my
    PC every six months. No problems at all, everything was working. So I proceeded to install drivers,
    which I had already on my flash drive, a 2GB PNY flash drive. But, for some reason, the usb drive
    was not recognized by windows XP on my uncle's PC, and I tried again on another port. No luck. I
    was thinking maybe all the usb ports were broken or something... but then I went to my desktop and
    proceeded to connect my usb drive to burn the drivers on to a CD. And what&#....
  8. Hard Drive Help!
    (5)
    Hey, i moved my harddrive from one place in my pc 2 another, booted in up it worked fine.... Then,
    the next day, it wouldnt boot..... It does all pre boot checks, and its reconised by the bios, but
    the win xp bootscreen wont appear, and sometimes it says harrdrive not found. PLASE
    HELP!!!!!(im using a different pc now, but i wont 2 fix it quickly without
    spending anythin.....)....
  9. I Cannot Format My C Drive....pls Help
    (18)
    /sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" /> When I tried to
    install XP as a fresh copy. I couldn’t able to format my C drive at the starting of the
    installation. So I installed XP in D drive and after that I forcibly deleted all the contents from C
    Drive. Now when I try to format C drive, its not getting formatted. I need to format my C drive coz
    there is a lot of virus in it. The C drive shows nothing in it but when I see the properties it
    takes 1.76GB as used space. Please any method or software’s to delete the C drive or format it.....
  10. Very Simple Login-script
    This is a very simple and secure login-script (18)
    Hi. This is my first post here. please Tell me if i do something wrong. This is a very simple and
    secure login script. I will try to add as many comments as possible, to make it easier to
    understand. Lets start with the database. Just make a new SQL file, and call it whatever you want.
    Paste this code: CODE CREATE TABLE `user` (   `id` int(4) unsigned
    NOT NULL auto_increment,   `username` varchar(32) NOT NULL,   `password`
    varchar(32) NOT NULL,   `level` int(4) default '1',   PRIM....
  11. Hot Antivirus For Flash Drive Only Easy Setup
    (4)
    Hot Antivirus for flash drive only easy setup http://www.skupload.freehostia.com/cpe17anti.html ....
  12. Proxy And Network Drive Script
    (2)
    At school they've decided to force us to use a proxy server (a sucky one because it's more
    offline than operational). As an Opera user, it's just a matter of pushing F12 to enable or
    disable the use of a proxy server, but IE users and FF will have to do a litlle bit more. That's
    why I've made this little "script" for the other users at school (in fact it's just a .reg
    file that windows will import). Set and enable a proxy server (copy the following code into a file
    with a .reg extention) CODE Windows Registry Editor Version 5.00 [HKEY_C....
  13. Linux Only Recognises Usb Drive As Read-only
    (7)
    Hi. I have a 2gb Cruzer Micro (USB Drive), that I use for transferring files between computers. It
    works fine whenever I use computers with Windows, but on Linux it has a problem, it keeps saying the
    drive's read only. I don't know if this is a bug to do with Linux or just My USB Drive
    locking itself when it doesn't recognise the OS as Windows. When I had SuSE 10.1, in GNOME. It
    would hardly work at all in Nautilus. It was really slow and kept freezing, and I had to use
    Konqueror. I now Have Ubuntu 7.10, with GNOME, and I can view and copy files from it fin....
  14. Linux Live-cd Or Hard Disk Installed Linux?
    (6)
    I don't know ...live cd's is fast choice....but hard disk is more like OS...and more stable
    i think.... what you prefer?? /smile.gif" style="vertical-align:middle" emoid=":)" border="0"
    alt="smile.gif" /> /dry.gif" style="vertical-align:middle" emoid=" ....
  15. Malfunctioning Samsung Cd/rw Drive
    Only burns to $.01 4X CDs (5)
    I have a Samsung RW CD burner in my desktop. The model number is too hard to get right now, but
    I'll get it later. Anyways... The problem is that it will only burn to one type of CD... a
    cheapo, slow, 4X CD. I've tried official Samsung CDs, many different burning programs, and
    I've even tried updating the firmware. Any help?....
  16. External Hard Disk Problems
    (11)
    I have an external 80GB laptop hard disk. When I connect it to my PC, everything goes fine. The
    problem occurs when I tried to disconnect it form my PC. It shows an message like "Cannot remove
    now, some programs are using the Hard Disk". Next time I connect it to my PC and try to open it. It
    shows me "Disk is corrupted or unreadable". It says format the Disk. When I do that, it says "the
    Disk connot be formatted". This hard disk is working on some PC's and in some others PC's it
    shows me the same message again. Pls Hepl me......... At present, I taking that Hard....
  17. Lacie 320gb External Hard Drive
    Your Thoughts? (12)
    What does everyone think of this external hard drive? I have been thinking of getting one for all my
    movies, music, programs etc but have not been sure what to get. I found this at a a local retailer
    and it looks good! But what do you guys think of it? Worth the money? Will I ever use the whole
    320GB (even though formatted, a hard drive is never what it says it is! /tongue.gif"
    style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /> ) If not, how big should I
    go? Are other brands better? Also, I've heard that these drives use a Seagate Dri....
  18. Cruzer Flash Drive (usb)
    What's with the software (11)
    I have a couple of 1G drives by other brands and just picked up a new 2G cruzer by Sandisk. But
    it comes with all this (stupid) software ... a launcher and stuff. I'm used to plugging it in
    and using it. And with the launching software it wants me to WAIT until it launches its own apps.
    What's the advantage? It seems quite redundant to have this extra software running. I deleted
    the files, but they keep coming back. YIKES! How do I get rid of them!? ....
  19. To Hide A Drive From Appearing In Windows Explorer
    (9)
    This method can be used only on Windows XP Professional Edition. 1.Open the Group Policy Editor
    (Start > Run, type in “gpedit.msc” and press ). 2.Go to User Configuration > Administrative
    Templates> Windows Components > WindowsExplorer. 3.Here, you’ll find “Hide these specified drives
    in My Computer” and “Prevent access to drives from My Computer”. 4.The difference between the two
    settings is that “ Prevent access ” will allow the user to see the drive icon, but will give an
    error message when he tries to access it. 5.“ Hide” will remove the icon so the user....
  20. Pen Drive Ram On Windows Vista
    Features on Windows Vista (13)
    I recently viewed the homepage of Windows Vista on Microsoft's site. It says that Windows
    Vista can use a pen drive (USB 2.0) as additional RAM to speed up the memory. My question
    is that we use RAM because the hard disk is SLOW. We do have a swap file, but we don't use it
    much because it slows down performance! So, how can it be that the USB Pen drive be as fast as
    the RAM? Its max. speed is just 153.3kbps So won't that be slow too? How can that act as
    additional RAM? Is Microsoft trying to fool innocent buyers? This is outrageous&....
  21. How To Make A Game-related Signature
    Not to hard (7)
    This page contains several images. Please allow it to load. This tutorial is for making a
    game-related signature. Signatures off-topic can be made using the instructions below, but will be
    much harder. First off, we need to find a game that you enjoy. In this example, I'll take Halo
    2. We now need to search for the Starting Image , a simple image that people have already made.
    However, we want to be careful and choose the correct one. Follow these rules and you should find a
    decent one: Good Images: Ones with a colorful background. Ones with the main ch....
  22. Finding The Current Line Number In A Text Box
    A very basic method of doing the deed. (1)
    Language: Visual Basic 6.0 (5.0/4.0) Level: Beginner Problem: How to find the current Line Number
    in a multiline text box? Some times it is necessary for us to provide a text editor in our
    programs, or maybe a text viewer. The text box control has no built in method to find the current
    line number like RichTextBox. Hence we need to code it manually. Solution: The simple concept of
    line numbers is the carriage return character, or simply the ASCII code 10. The line feed character
    has the ASCII code 13. In the code example I have used chr(10), you can also use vbCrLf i....
  23. What Is The Biggest Hard Drive In The World ?
    (53)
    I always pondered this question alot. How big is the biggest hard drive in the world? Does anyone
    know? I'm sure you cannot buy it at the store. And also, what's the biggest hard drive you
    can buy at the store? Because I need a quite large one for all my movies and mp3 and games. anyone
    please?....
  24. DVD/CD-RW Combo Drive Help: Not Reading DVDs
    I need help with my dvd drive (13)
    Hey all I need some help and advice, Lately my DVD/CD-RW Combo Drive has been seeming up: I put
    in a CD, Works fine. I Put in a DVD and the drive spins and the light comes on, but nothing
    happens, i go my computer and it shows the drive is empty. Is it dieing on me or what is going on?....
  25. How To Change Drive Icons And Labels
    (3)
    How to change Drive icons and labels (Windows XP,2000) To change Drive icon: 1- Click Start > Click
    Run > type “regedit” to run Registry Editor 2- Find following: HKEY_LOCAL_MACHINE / SOFTWARE /
    Microsoft / Windows / CurrentVersion / Explorer 3-create a new Key and name “ DriveIcons ” 4- Under
    DriveIcons create a new Key with the drive letter ( for example C ), within drive letter create a
    new key and name “ DefaultIcon ”. 5- Give the default value , the icon you want to use, for example
    : c:\windows\system32/shell32.dll,74 To change Drive Label: Do step one ....
  26. Where Can I Find A Virtual CD-ROM Drive Software ?
    (16)
    Does anyone here use a virtual cd-rom drive and if so do you know a good if so give a link....
  27. Map An Ftp Server As A Drive
    (14)
    all students in our university have an FTP account for file storage. So access to FTP server is the
    thing that I do it everday. Therefore, I configure my Windows XP to map to the FTP server as a
    drive. Here are the step that I take: 1. use NSLOOKUP to find out what the ip address of the FTP
    site: nslookup ftp.globalscape.com (this is a example only) write down the ip
    address that was shown. in this case, it is 64.243.64.21 2. Open the LMHOSTS file
    it is inside the folder c:\windows\system32\drivers\etc ....
  28. Booting With A USB Drive ( Pen )
    Boot Norton Ghost with USB 2.0 (2)
    Hi, What I want to do is to ghost computers with a 2gb USBDrive. We wanted to ghost some computers
    without carrying the whole Ghost server. Sounds easy but I had some problems. First, it worked
    perfectly in USB 1.0 wich is too slow for our needs. I found the USB 2.0 Dos driver and i'm
    able to load it. After that, it needs another file to give back a letter to the Drive but it change
    the drive letters and the booting stops there. I got a solution somewhere wich was to Make a
    virtual drive to put the content to boot, switch to this drive to complete the booting bef....
  29. Array Sorting
    Does anyone hava a decent JAVA method (21)
    does anyone have a decent JAVA method that will sort an array from smallest-to highest?
    /mellow.gif" style="vertical-align:middle" emoid=":mellow:" border="0" alt="mellow.gif" /> The one
    i'm trying to write doesn't seem to work... or if you could look at mine below, and tell me
    what i did wrong, that'd be nice to.(if it reallllyyyyyyyyy sucks, please dont laugh to loud
    /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> ) This should
    take an array and then calculate how many of a number is in it, add it to the first slots....
  30. Repartitioning A Thumb Drive
    (9)
    Here's my Story :: QUOTE Story :: A was installing WinXP on PC B's Flash Drive (FD) was
    in the USB Slot. While the WindowsXP Setup is partitioning, 'A' realised that the light on
    the FD was blinking .. indicating activity so he plucked it out immediately. Now 'B's FD is
    corrupted .. I recovered almost all the data from the corrupted FD using Ontrack's EasyRecovery
    6.0 .. It is the most amazing software ever developed .. it could virtually recover all data in a
    drive that had been formatted .. Alright .. now is the headache .. there....

    1. Looking for wiping, hard, drive, secure, method,

Searching Video's for wiping, hard, drive, secure, method,
advertisement




Wiping Out A Hard Drive - Most secure method?



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE