What method of wiping do you use? #582
Replies: 2 comments 1 reply
-
From my experience, using a PRNG (Pseudorandom Number Generator) stream has proven to be the most effective method for securely overwriting data on hard drives. Here’s why I prefer PRNG streams and how they compare to other methods. Why I Prefer PRNG Streams
Comparison with Other Methods1. Fill With Zeros and Fill With Ones
2. RCMP TSSIT OPS-II
3. DoD Short (3 Pass) and DoD 5220.22-M (7 Pass)
4. Gutmann Wipe
5. PRNG Stream
6. Verify Zeros and Verify Ones
7. HMG IS5 Enhanced
SummaryOverall, I find PRNG streams to be the most suitable as they are effective, efficient, and provide high protection against data recovery. While methods like DoD 5220.22-M and Gutmann Wipe offer very high security levels, they are often time-consuming. Filling with zeros or ones provides only basic security and is less effective against advanced recovery techniques. The choice of method ultimately depends on the sensitivity of the data and the required level of security. |
Beta Was this translation helpful? Give feedback.
-
@PartialVolume,
Thank you for clarifying this.
…--
Mike
________________________________
From: PartialVolume ***@***.***>
Sent: Friday, June 21, 2024 4:03:55 PM
To: martijnvanbrummelen/nwipe ***@***.***>
Cc: Subscribed ***@***.***>
Subject: Re: [martijnvanbrummelen/nwipe] What method of wiping do you use? (Discussion #582)
@Knogle<https://github.com/Knogle> I don't mean any disrespect, but did you use ChatGPT to help generate your reply? AI generated output is pretty much grammatically perfect and your reply has that sort of feel not to mention it generates
@fieldofgreen<https://github.com/fieldofgreen>
While I agree that a prng pass is preferable there is no publicly available data to suggest that a singles zeros wipe on a modern non mfm drive can be recovered. The reason I prefer a prng drive on a modern spinning disc is that that randomness of the data exercises the data channels in the drive. This is important for detection of a stuck bit. I have a test disc that will pass a zeros wipe & verification but fails a ones or prng wipe. The drive has a fault where a single bit on the data bus is stuck at zero so passes a zero wipe & verification without a problem.
prng stream & verification is more likely to fully wipe a SSD depending on whether the firmware within the drive uses some form of compression technique. Random data is virtually impossible to compress. I've tried compressing prng data and have so far found no commonly available program that can compress the data.
Re the Gutmann wipe it's really a waste of time and electricity. It may have been relevant to old MFM drives but not modern drives.
So I'm summary and this is just my opinion, a single prng wipe with verification or any of the methods that incorporate a prng pass like DOD 3 pass or IMG IS5 enhanced are the methods I would use. But in the end it really depends on what your goal is.
—
Reply to this email directly, view it on GitHub<#582 (reply in thread)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/ANGK2PXYQQ4OTEFXJ4VAVM3ZISILXAVCNFSM6AAAAABJV2K75OVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TQNBTG42DS>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
I noticed the new version of ShredOS has PRNG Stream as its default and was curious to know if it was any better than filling with 1s and then the Blanking pass filling with 0s? Is there any other method that you might choose over another? Im just curious what makes the different methods worth using
Beta Was this translation helpful? Give feedback.
All reactions