How do I get rid of a hard disk without exposing my source code? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T11:18:33Zhttp://stackoverflow.com/feeds/question/61785http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code11How do I get rid of a hard disk without exposing my source code?Gulzar2008-09-15T01:57:10Z2009-02-12T23:46:53Z
<p>What is the proper way to dispose an old hard disk which contains my source code and other intellectual property? I was about to throw it away in the recycle box but thought better to check it with SO users first.</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61787#617872Answer by John Boker for How do I get rid of a hard disk without exposing my source code?John Boker2008-09-15T02:01:36Z2008-09-15T02:01:36Z<p>if the data is very sensitive you should have the drive destroyed.</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61788#617885Answer by Ash for How do I get rid of a hard disk without exposing my source code?Ash2008-09-15T02:02:40Z2008-09-15T02:18:39Z<pre><code>Hammer.Smash(oldDrive);
</code></pre>
<p>Obviously, not such a good idea if you jsut want to give away a perfectly good working drive and need to guarantee data is erased. </p>
<p>In that case I would use a commercial low level drive deletion application. Never used one myself so I don't have any links. ANyone else?</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61789#617894Answer by Blorgbeard for How do I get rid of a hard disk without exposing my source code?Blorgbeard2008-09-15T02:02:58Z2008-09-15T02:52:23Z<p>Reformatted harddrives are easily recovered. You need at the least some kind of "secure format" program that overwrites the whole thing with random data a few times.</p>
<p>In linux, you can do this (where hdb is the disk):</p>
<pre><code>dd if=/dev/random of=/dev/hdb
</code></pre>
<p>If you're paranoid enough, you can also drill a hole through it, or otherwise physically mangle the platters.</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61791#617911Answer by johnc for How do I get rid of a hard disk without exposing my source code?johnc2008-09-15T02:04:19Z2008-09-15T02:24:08Z<p>You can run a data eraser tool over it first, such as <a href="http://www.tolvanen.com/eraser/" rel="nofollow">Eraser</a>, which is a free tool, use the Guttmann option, which overwrites data 35 times with 'pseudorandom' noise ( <strong>edit:</strong> as a comparison, the US Department of Defense only requires 7 overwrites)</p>
<p>It will take a while, but it will largely guarantee a dumpster diver wont get your old data</p>
<p><strong>EDIT</strong> There is a discussion <a href="http://www.slyck.com/forums/viewtopic.php?f=48&t=29607" rel="nofollow">here</a> on what format (DOD vs Guttman vs NSA) to really wipe a drive, in summary postulates that unless you have something 'really illegal' then you should feel safe using Guttman.</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61793#617931Answer by Paul Tomblin for How do I get rid of a hard disk without exposing my source code?Paul Tomblin2008-09-15T02:05:09Z2008-09-15T02:05:09Z<p>Depending how paranoid you are, a format might not be enough. I usually make it one big Linux partition on it, and then <code>cat /dev/zero > /dev/hda</code>, then format it and install Linux on it. The truly paranoid will rely on one of the secure erase programs that will overwrite the whole thing with first one bit pattern then another and then another. There is a FIPS standard for that.</p>
<p>Of course, the military goes one better and will slag the disk with thermite, then bury the slag in a secure facility.</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61800#618006Answer by bruceatk for How do I get rid of a hard disk without exposing my source code?bruceatk2008-09-15T02:10:53Z2008-09-15T02:10:53Z<p>A few holes drilled thru it should take care of it.</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61801#6180110Answer by aib for How do I get rid of a hard disk without exposing my source code?aib2008-09-15T02:12:26Z2008-09-15T02:12:26Z<p>There are some free utilities out there which will overwrite your hard disk (or specific files) with random data many times over, making data recovery very, very expensive. GNU Coreutils has a program called <a href="http://www.gnu.org/software/coreutils/manual/html_node/shred-invocation.html" rel="nofollow">shred</a>, Microsoft/SysInternals has one called <a href="http://technet.microsoft.com/en-us/sysinternals/bb897443.aspx" rel="nofollow">SDelete</a>, and there are other free <a href="http://wipe.sourceforge.net/" rel="nofollow">alternatives</a>.</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61803#618032Answer by psytek for How do I get rid of a hard disk without exposing my source code?psytek2008-09-15T02:20:45Z2008-09-15T02:20:45Z<p>take off the cover with a torx wrench, and pry the platters up with a screw driver.</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61812#618128Answer by Oliver Jones for How do I get rid of a hard disk without exposing my source code?Oliver Jones2008-09-15T02:54:33Z2008-09-15T02:54:33Z<p>Darik's Boot and Nuke ("DBAN") has been recommended to me in the past, though I've never used it. (<a href="http://sourceforge.net/projects/dban/" rel="nofollow">http://sourceforge.net/projects/dban/</a>)</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61823#618231Answer by SeanDowney for How do I get rid of a hard disk without exposing my source code?SeanDowney2008-09-15T03:15:14Z2008-09-15T03:15:14Z<p>This seems like lots of fun to answer :)</p>
<p>You can use the magnets for all kinds of fun, they are super strong.</p>
<p>I would personally go for some thermite, it's lots of fun:
<a href="http://en.wikipedia.org/wiki/Thermite" rel="nofollow">http://en.wikipedia.org/wiki/Thermite</a></p>
<p>Burns at 4000 degrees</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61824#618241Answer by Bob Somers for How do I get rid of a hard disk without exposing my source code?Bob Somers2008-09-15T03:19:06Z2008-09-15T03:19:06Z<p>Oliver Jones nailed it. DBAN that sucker if you need to reuse the drive with the sensitive information safely destroyed.</p>
<p>If you don't need the drive anymore, well, then actually destroy it. Large hammers, fire, and shredding devices generally work well.</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61828#618281Answer by BCS for How do I get rid of a hard disk without exposing my source code?BCS2008-09-15T03:39:08Z2008-09-15T03:39:08Z<p>My preferred way is to take it apart and use the voice coil magnets to stick the platters to the fridge for a few days. It has the advantage of resulting in a pile of HDD platters (they look cool and make good mirrors) and a few <em>REALLY STRONG</em> magnets.</p>
<p>As pointed out elsewhere, this will only stop most people. FBI, CIA, KGB, China and friends won't even blink.</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61831#618311Answer by Unkwntech for How do I get rid of a hard disk without exposing my source code?Unkwntech2008-09-15T03:42:31Z2008-09-15T03:42:31Z<p>I prefer a program called KillDisk by <a href="http://www.killdisk.com/" rel="nofollow">LINK</a></p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61837#618374Answer by Chris for How do I get rid of a hard disk without exposing my source code?Chris2008-09-15T03:48:55Z2008-09-15T03:48:55Z<p>If you want to ensure the data on the harddrive is unrecoverble, I'd look into the method employed by <a href="http://16systems.com/zero/index.html" rel="nofollow">The Great Zero Challenge</a>:</p>
<blockquote>
<p>We used the 32 year-old Unix <a href="http://en.wikipedia.org/wiki/Dd_%28Unix%29" rel="nofollow">dd</a> command using <a href="http://en.wikipedia.org/wiki//dev/zero" rel="nofollow">/dev/zero</a> as input to <a href="http://16systems.com/zero/pics/dd.jpg" rel="nofollow">overwrite</a> the drive. Three data recover companies were contacted. All three are listed on <a href="http://www.google.com/search?hl=en&q=data+recovery&btnG=Google+Search" rel="nofollow">this page</a>. Two companies declined to review the drive immediately upon hearing the phrase 'dd', the third declined to review the drive after we spoke to second level phone support and they asked if the dd command had actually completed (good question).</p>
</blockquote>
<p>(Recently <a href="http://hardware.slashdot.org/article.pl?sid=08/09/06/189248" rel="nofollow">reported</a> on Slashdot).</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61864#618641Answer by Randal Wakerley for How do I get rid of a hard disk without exposing my source code?Randal Wakerley2008-09-15T04:45:05Z2008-09-15T04:45:05Z<p>Do the <code>dd</code> command as described above, but do it several times. I hear there's a kind of power law where each write makes it less likely to retrieve anything and a handful of writes push the probability of old data surviving into the realm of "impossibility"</p>
<p>If you do this on windows os, I'd just use a live cd like Knoppix. </p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61865#618651Answer by Mark Nold for How do I get rid of a hard disk without exposing my source code?Mark Nold2008-09-15T04:48:03Z2008-09-15T04:48:03Z<p>The simplest way i find is to unscrew the covers and fill them with sand or something similar. </p>
<p>While you're in there you can pull out the magnets which are <a href="http://www.google.com/search?q=hard+disk+magnets" rel="nofollow">very useful</a></p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/103237#1032371Answer by Scot McPherson for How do I get rid of a hard disk without exposing my source code?Scot McPherson2008-09-19T15:59:24Z2008-09-19T15:59:24Z<p>The US Government purges the drives with something similar to bzcrypt to randomize the empty space with 7 passes, then the drives are shredded...literally, just like a paper shredder, but designed for shredding hardware.</p>
<p>No joke</p>
<p>Scot</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/115395#1153952Answer by tduehr for How do I get rid of a hard disk without exposing my source code?tduehr2008-09-22T15:11:41Z2008-09-22T15:11:41Z<p>True data destruction for hard drives comes only from destroying the drive and grinding it to bits.</p>
<p>Efective destruction comes from writing "random" data over the contents of the drive several times. The US Government has a seven pass method they use. At least a couple of those passes are random, others are all ones, all zeroes or some pattern.</p>
<p>If you're just talking about personal sensitive data in the realm of PII or family secrets, deleting the contents then using dd from /dev/zero and/or /dev/random will work if you're in a unix environment and you don't trust the secure erase tools provided with your OS.</p>
<p>If you're talking about corporate/government secrets, it may be worth looking into a disposal/destruction service. Then again, if you're talking about government secrets you probably wouldn't be asking here.</p>
<p>The reason complete destruction is the only absolute method has to do with the physics of magnetic media. When you overwrite a value onto disk the magnetic strength of the bit is not the same as it would have been the first time around. Think of it like bending a paperclip. Bend it once (write a one), then unbend it (overwrite with zero), and you can tell it's been bent before. This information can be used to recover the data through an overwrite or two. Melt the paperclip (physically destroy the drive) and it becomes hard to know there was a paperclip in the first place.</p>
<p>In most cases a "secure delete" - assuming it's a trustworthy one - and full format is sufficient.</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/115491#1154917Answer by Jim Ford for How do I get rid of a hard disk without exposing my source code?Jim Ford2008-09-22T15:24:26Z2008-09-22T15:24:26Z<ol>
<li>dd</li>
<li>shoot holes in it with a gun <img src="http://oldvan.com/shot/pix/drive4.jpg" alt="shot hard drive" title="" /> </li>
<li>melt it with thermite <img src="http://img79.imageshack.us/img79/3685/thermitexi6.png" alt="thermite" title="" /></li>
</ol>
<p>done :)</p>
http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/544087#5440871Answer by Jay Bazuzi for How do I get rid of a hard disk without exposing my source code?Jay Bazuzi2009-02-12T23:46:53Z2009-02-12T23:46:53Z<p>Too late for you, but if you are working with data that is this sensitive to you, consider encrypting your drives with something like BitLocker.</p>