dwipe 1.0.7__tar.gz → 2.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,6 @@
1
1
  .vscode/
2
2
  */__pycache/
3
+ .venv/
3
4
  venv.zd/
4
5
  *.pyc
5
6
  *egg-info*
dwipe-2.0.0/PKG-INFO ADDED
@@ -0,0 +1,407 @@
1
+ Metadata-Version: 2.4
2
+ Name: dwipe
3
+ Version: 2.0.0
4
+ Summary: A tool to wipe disks and partitions for Linux
5
+ Keywords: disk,partition,wipe,clean,scrub
6
+ Author-email: Joe Defen <joedef@google.com>
7
+ Requires-Python: >=3.8
8
+ Description-Content-Type: text/markdown
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: POSIX :: Linux
12
+ License-File: LICENSE
13
+ Requires-Dist: console-window >= 1.0.0
14
+ Project-URL: Bug Tracker, https://github.com/joedefen/dwipe/issues
15
+ Project-URL: Homepage, https://github.com/joedefen/dwipe
16
+
17
+ # dwipe
18
+ `dwipe` is a tool to wipe disks and partitions for Linux to help secure your data. `dwipe` aims to reduce mistakes by providing ample information about your devices during selection.
19
+
20
+ ![Demo of dwipe](https://raw.githubusercontent.com/joedefen/dwipe/master/images/dwipe-2025-12-31-09-37.gif)
21
+ ### Quick Comparison
22
+
23
+ | Feature | dwipe | nwipe | shred | dd |
24
+ |---------|-------|-------|-------|-----|
25
+ | Interactive TUI | ✓ | ✓ | ✗ | ✗ |
26
+ | Multiple simultaneous wipes | ✓ | ✗ | ✗ | ✗ |
27
+ | Hot-swap detection | ✓ | ✗ | ✗ | ✗ |
28
+ | Device/partition locking | ✓ | ✗ | ✗ | ✗ |
29
+ | Persistent wipe state | ✓ | ✗ | ✗ | ✗ |
30
+ | Resume interrupted wipes | ✓ | ✗ | ✗ | ✗ |
31
+ | Wipe operation logging | ✓ | ✗ | ✗ | ✗ |
32
+ | Mount detection/prevention | ✓ | ✓ | ✗ | ✗ |
33
+ | Fast Statistical sampling verification | ✓ | ✗ | ✗ | ✗ |
34
+ | Multi-pass wipe standards | ✗ | ✓ | ✓ | ✗ |
35
+ | Full sequential verification | ✗ | ✓ | ✓ | ✓ |
36
+ | Certificate generation | ✗ | ✓ | ✗ | ✗ |
37
+
38
+ > * **Modern drives are reliably wiped with one pass of zeros**; just zero once in almost all cases for best, fastest results.
39
+ > * `dwipe` offers Multi-pass and Rand modes as "checkbox" features, but those provide no additional security on drives manufactured after 2001 (NIST SP 800-88).
40
+
41
+ ## **V2 Features**
42
+
43
+ * **Statistical verification** - Automatic or on-demand verification with intelligent pattern detection:
44
+ - Fast-fail for zeros (fails on first non-zero byte)
45
+ - Statistical analysis for random data to check for evidence of randomness
46
+ - Smart sampling: divides disk into 100 sections, randomly samples each section to sample entire disk
47
+ - Unmarked disk detection: can verify disks without filesystems and auto-detect if zeros/random
48
+ * **Configurable verification percentage** - Choose thoroughness: 0% (skip), 2%, 5%, 10%, 25%, 50%, or 100% (cycle with **V** key, persistent preference)
49
+ * **Multi-pass wipe support** - Choose 1, 2, or 4 wipe passes with alternating patterns for improved data destruction (cycle with **P** key, persistent preference)
50
+ * **Inline wipe confirmation** - Confirmation prompts appear below the selected device (no popup), keeping full context visible
51
+ * **Configurable confirmation modes** - Choose your safety level: single keypress (Y/y), typed confirmation (YES/yes), or device name (cycle with **c** key)
52
+ * **Enhanced wipe history** - Detailed log viewer (**h** key) shows wipe history with UUIDs, filesystems, labels, and percentages for stopped wipes
53
+ * **Active wipe highlighting** - In-progress wipes displayed in bright cyan/blue with elapsed time, remaining time, and transfer speed (0-100% write, 101-200% verify)
54
+ * **Persistent user preferences** - Theme, wipe mode (Rand/Zero/Rand+V/Zero+V), confirmation mode, verification %, and locked devices persist across sessions (saved to `~/.config/dwipe/state.json`)
55
+ * **Individual partition locking** - Lock individual partitions to prevent accidental wiping (previously only whole disks could be locked)
56
+ * **Full terminal color themes** - Complete themed color schemes with backgrounds, not just highlights (cycle with **t** key)
57
+ * **Visual feedback improvements** - Mounted and locked devices appear dimmed; active wipes are bright and prominent
58
+ * **Smart device identification** - Uses UUID/PARTUUID/serial numbers for stable device tracking across reconnections
59
+ * **Screen-based navigation** - Modern screen stack architecture with help screen (**?**) and history screen (**h**)
60
+ * **Direct I/O to Disk** - Wiping is done with direct I/O which is fast and avoid polluting your page cache. Writer threads are given lower than normal I/O priority to play nice with other apps. This makes stopping jobs fast and certain.
61
+ * **Improved Handling of Bad Disks.** Now detects (sometimes corrects) write failures, slowdowns, excessive no progress, and reports/aborts hopeless or hopelessly slow wipes.
62
+
63
+ ## Requirements
64
+ - **Linux operating system** (uses `/dev/`, `/sys/`, `/proc/` interfaces)
65
+ - **Python 3.8 or higher**
66
+ - **Root/sudo privileges** (automatically requested when you run the tool)
67
+ - **lsblk utility** (usually pre-installed on most Linux distributions)
68
+
69
+ ## Installation
70
+
71
+ * **Recommended (using pipx):** `pipx install dwipe`
72
+ * **Verify installation:** `dwipe --help`
73
+ * **Uninstall:** `pipx uninstall dwipe`
74
+
75
+ ## Quick Start
76
+ 1. Install `dwipe`
77
+ 2. Run `dwipe` from a terminal (`sudo` will be requested automatically)
78
+ 3. Observe the context-sensitive help on the first line
79
+ 4. Navigate with arrow keys or vi-like keys (j/k)
80
+ 5. Press **?** for full help screen
81
+
82
+ ## Features
83
+
84
+ `dwipe` provides comprehensive disk wiping capabilities with safety features:
85
+
86
+ * **Smart device display** - Shows disks and partitions with labels, sizes, types, and vendor/model information to help identify devices correctly
87
+ * **Safety protections** - Prevents wiping mounted devices, detects overlapping wipes, supports manual disk locking
88
+ * **Hot-swap detection** - Updates the device list when storage changes; newly added devices are marked with **^** to make them easy to spot
89
+ * **Multiple simultaneous wipes** - Start wipes on multiple devices at once, with individual progress tracking and completion states
90
+ * **Flexible wipe modes** - Choose between Rand, Zero, Rand+V (with auto-verify), or Zero+V (with auto-verify). Multi-pass modes alternate patterns for improved data destruction
91
+ * **Persistent state tracking** - Wipe status survives reboots; partially wiped (**s**) and completed (**W**) states are stored on the device
92
+ * **Device filtering** - Filter devices by name/pattern using regex in case of too many for one screen
93
+ * **Stop capability** - Stop individual wipes or all wipes in progress
94
+ * **Disk locking** - Manually lock disks to prevent accidental wipes (locks hide all partitions)
95
+ * **Dry-run mode** - Practice using the interface without risk using `--dry-run`
96
+
97
+
98
+ > **Note:** `dwipe` shows file system labels, and if not available, the partition label. It is best practice to label partitions and file systems well to make selection easier.
99
+
100
+ ## Usage
101
+
102
+ Simply run `dwipe` from the command line without arguments: `dwipe`
103
+
104
+ ### Color Legend
105
+
106
+ `dwipe` uses color coding to provide instant visual feedback about device and operation status:
107
+
108
+ - **Dimmed (gray)** - Mounted or locked devices (cannot be wiped)
109
+ - **Default (white)** - Ready to wipe, idle state, or previously wiped (before this session)
110
+ - **Bright cyan/blue + bold** - Active wipe or verification in progress (0-100% write, v0-v100% verify)
111
+ - **Bold yellow** - Stopped or partially completed wipe
112
+ - **Bold green** - ✅ Successfully completed wipe in THIS session (ready to swap out!)
113
+ - **Dimmer green** - ✅ Successfully completed wipe in previous session .
114
+ - **Bold orange** - Newly inserted (hot-swapped) device
115
+ - **Bold red** - Destructive operation prompts (wipe confirmation)
116
+
117
+ ### Color Themes
118
+
119
+ `dwipe` supports multiple color themes for improved visibility and aesthetics.
120
+
121
+ **Available themes:**
122
+ - `default` - Terminal Default (basic ANSI colors)
123
+ - `dark-mono` - Dark Mono (almost-white on almost-black with bright colors)
124
+ - `light-mono` - Light Mono (almost-black on almost-white with bright colors)
125
+ - `solarized-dark` - Solarized Dark palette
126
+ - `solarized-light` - Solarized Light palette (for light terminal backgrounds)
127
+ - `gruvbox` - Gruvbox Dark palette
128
+ - `nord` - Nord palette
129
+
130
+ **Changing themes:**
131
+ - Press **t** from the main screen to open the theme preview screen
132
+ - The theme screen shows color examples for each color purpose (DANGER, SUCCESS, WARNING, etc.)
133
+ - Press **t** while on the theme screen to cycle through available themes and preview them live
134
+ - Press **ESC** or **ENTER** to return to the main screen
135
+ - Selected theme is saved and persists across sessions
136
+
137
+ **Theme features:**
138
+ - Yellow/warning color for stopped wipes (state **s**) - highly visible even when not selected
139
+ - Red/danger color for wipe confirmation prompts
140
+ - Coordinated color palettes designed for terminal readability
141
+
142
+ ### Device State Values
143
+
144
+ The **STATE** column shows the current status of each device:
145
+
146
+ | State | Meaning |
147
+ |-------|---------|
148
+ | **-** | Device is ready for wiping |
149
+ | **^** | Device is ready for wiping AND was added after `dwipe` started (hot-swapped) |
150
+ | **Mnt** | Partition is mounted or disk has mounted partitions - cannot be wiped |
151
+ | **N%** | Wipe is in progress (shows percentage complete, 0-100%) |
152
+ | **vN%** | Verification is in progress (shows percentage complete, v0-v100%) |
153
+ | **STOP** | Wipe or verification is being stopped |
154
+ | **s** | Wipe was stopped - device is partially wiped (can restart or verify) |
155
+ | **W** | Wipe was completed successfully (can wipe again or verify) |
156
+ | **Lock** | Disk is manually locked - partitions are hidden and cannot be wiped |
157
+ | **Unlk** | Disk was just unlocked (transitory state) |
158
+
159
+ ### Available Actions
160
+
161
+ The top line shows available actions. Some are context-sensitive (only available for certain devices):
162
+
163
+ | Key | Action | Description |
164
+ |-----|--------|-------------|
165
+ | **w** | wipe | Wipe the selected device (requires confirmation) |
166
+ | **v** | verify | Verify a wiped device or detect pattern on unmarked disk (context-sensitive) |
167
+ | **s** | stop | Stop the selected wipe in progress (context-sensitive) |
168
+ | **S** | Stop All | Stop all wipes in progress |
169
+ | **l** | lock/unlock | Lock or unlock a disk to prevent accidental wiping |
170
+ | **q** or **x** | quit | Quit the application (stops all wipes first) |
171
+ | **?** | help | Show help screen with all actions and navigation keys |
172
+ | **h** | history | Show wipe history log |
173
+ | **/** | filter | Filter devices by regex pattern (shows matching devices + all active wipes) |
174
+ | **ESC** | clear filter | Clear the filter and jump to top of list |
175
+ | **m** | mode | Cycle wipe mode: Rand, Zero, Rand+V, Zero+V (saved as preference) |
176
+ | **P** | passes | Cycle wipe passes: 1, 2, or 4 (saved as preference) |
177
+ | **V** | verify % | Cycle verification percentage: 0%, 2%, 5%, 10%, 25%, 50%, 100% (saved as preference) |
178
+ | **c** | confirmation | Cycle confirmation mode: Y, y, YES, yes, device name (saved as preference) |
179
+ | **d** | dirty limit | Cycle dirty page limit: 0, 500, 1000, 2000, 4000 MB (saved as preference) |
180
+ | **D** | dense | Toggle dense/spaced view (saved as preference) |
181
+ | **t** | themes | Open theme preview screen to view and change color themes |
182
+
183
+ ### Wipe Modes
184
+
185
+ `dwipe` supports four wipe modes (cycle with **m** key):
186
+
187
+ - **Zero** - Fills the device with zeros (multi-pass alternates random/zero patterns, ending on zeros)
188
+ - **Zero+V** - Same as Zero, but automatically verifies after wipe completes (if verify % > 0)
189
+ - **Rand** - Fills the device with random data (multi-pass alternates zero/random patterns, ending on random)
190
+ - **Rand+V** - Same as Rand, but automatically verifies after wipe completes (if verify % > 0)
191
+
192
+ The `+V` suffix indicates automatic verification after wipe completion. Without `+V`, you can still manually verify by pressing **v** on a wiped device.
193
+
194
+ > **Note:** Multi-pass wipes (2 or 4 passes) alternate between zero and random patterns to ensure different bit patterns physically overwrite the disk, ending on your selected mode.
195
+
196
+ ### Resuming Stopped Wipes
197
+
198
+ Stopped wipes (state **s**) can be resumed by pressing **w** on the device:
199
+
200
+ **How Resume Works:**
201
+ - Preserves the original wipe mode (Rand or Zero) from when the wipe was started
202
+ - Uses the **current** passes setting to determine how much more to write
203
+ - Continues from the exact byte offset where it stopped (rounded to buffer boundary)
204
+ - Smart validation ensures interrupted wipes resume with correct pattern integrity
205
+
206
+ **Resume Examples:**
207
+
208
+ | Stopped At | Current Passes | What Happens |
209
+ |------------|----------------|--------------|
210
+ | 50% | 1 pass | Resumes: writes remaining 50% |
211
+ | 150% (1.5 of 4 passes) | 1 pass | Already complete (150% > 100%) |
212
+ | 150% (1.5 of 4 passes) | 4 passes | Resumes: writes 2.5 more passes (150% → 400%) |
213
+ | 100% (1 pass complete) | 2 passes | Resumes: writes pass 2 (100% → 200%) |
214
+
215
+ **Benefits:**
216
+ - Change passes setting before resuming to finish faster (reduce) or add more passes (increase)
217
+ - No need to restart from beginning
218
+ - Progress marker updated every 30 seconds, so resume works even after crashes or power loss
219
+ - Automatic validation prevents corrupted final patterns
220
+
221
+ ### Verification Strategy
222
+
223
+ `dwipe` uses intelligent verification with statistical analysis and fast-fail optimizations:
224
+
225
+ **Smart Sampling:**
226
+ - Divides disk into 100 equal sections
227
+ - Randomly samples configurable percentage (0%, 2%, 5%, 10%, 25%, 50%, 100%) from EACH section
228
+ - Ensures complete disk coverage even with 2% verification
229
+ - Change verification percentage with **V** key (saved as preference)
230
+
231
+ **Pattern Detection:**
232
+ - **Zero verification**: Fails immediately on first non-zero byte (fast!)
233
+ - **Random verification**: Statistical analysis of byte distribution
234
+ - Tests if byte distribution is uniform (all byte values 0-255 appear fairly equally)
235
+ - Fast-fails periodically if non-random pattern detected
236
+ - Checks for evidence of randomness to distinguish from structured data
237
+
238
+ **Verification Modes:**
239
+ 1. **Automatic verification** (after wipe): Use a mode with `+V` suffix (Rand+V or Zero+V) and set verify % > 0
240
+ 2. **Manual verification** (press **v**): Verify previously wiped devices or detect pattern on unmarked disks (requires verify % > 0)
241
+ 3. **Unmarked disk detection**: Can verify disks with no filesystem to detect if all zeros or random
242
+ - If passes, writes marker as if disk had been wiped
243
+ - Useful for detecting pre-wiped drives or verifying manufacturer erasure
244
+
245
+ **Verification States:**
246
+ - ✓ (green checkmark) - Verification passed
247
+ - ✗ (red X) - Verification failed
248
+ - No symbol - Not verified
249
+ - During verify: **vN%** shows progress (v0% to v100%)
250
+
251
+ **Why statistical sampling is better than sequential:**
252
+ - 2% verification with 100 sections provides better coverage than 2% sequential read
253
+ - Detects problems faster (could hit bad sector in early sections)
254
+ - Statistical analysis actually validates randomness (sequential can't do this)
255
+ - Much faster than 100% sequential verification
256
+
257
+ ### Progress Information
258
+
259
+ When wiping a device, `dwipe` displays:
260
+ - **Elapsed time** - Time since wipe started (e.g., 1m18s)
261
+ - **Remaining time** - Estimated time to completion (e.g., -3m6s)
262
+ - **Write rate** - Current throughput (e.g., "45.2MB/s")
263
+ - **MaxSlowDown** - Ratio of Fastest/Slowest write speed (e.g, ÷2). If over threshold, the write job stops.
264
+ - **MaxWriteDelay** - Largest write delay detected (e.g., 𝚫122ms). If over threshold, the write job stops.
265
+
266
+ ### Persistent State
267
+
268
+ The **W** (wiped) and **s** (partially wiped) states are persistent across reboots. This is achieved by writing metadata to the first 16KB of the device:
269
+ - First 15KB: zeros
270
+ - Next 1KB: JSON metadata (timestamp, bytes written, total size, mode, verification status)
271
+
272
+ When a device with persistent state is displayed, additional information shows:
273
+ - When it was wiped and the completion percentage
274
+ - Verification status: ✓ (passed), ✗ (failed), or no symbol (not verified)
275
+
276
+
277
+ ### The Help Screen
278
+ When **?** is typed, you can see the available keys and some obscure settings no seen elsewhere.
279
+
280
+ ### Navigation
281
+
282
+ You can navigate the device list using:
283
+ - **Arrow keys** - Up/Down to move through the list
284
+ - **Vi-like keys** - j (down), k (up), g (top), G (bottom)
285
+ - **Page Up/Down** - Quick navigation through long lists
286
+
287
+ ## Device Filtering
288
+
289
+ The **/** key activates incremental search filtering with vim-style behavior:
290
+
291
+ **How it works:**
292
+ - Press **/** to start filtering
293
+ - Type your regex pattern - the device list updates **as you type** (real-time filtering)
294
+ - Your cursor position is shown with **|** in the header
295
+ - **Arrow keys**, **Home**/**End**, and **Backspace** work for editing
296
+ - **ENTER** to accept the filter
297
+ - **ESC** to cancel and restore the previous filter
298
+
299
+ **Filter Examples:**
300
+
301
+ The filter supports regex patterns. Here are some useful examples:
302
+
303
+ ```
304
+ /sda # Show only sda and its partitions
305
+ /sd[ab] # Show sda, sdb and their partitions
306
+ /nvme # Show all NVMe devices
307
+ /nvme0n1p[12] # Show only partitions 1 and 2 of nvme0n1
308
+ /usb # Show devices with "usb" in their labels
309
+ ```
310
+
311
+ Press **ESC** from the main screen to clear the filter and return to showing all devices.
312
+
313
+ **Note:** Invalid regex patterns are ignored - the filter stays at the last valid pattern while you type.
314
+
315
+ ## Security Considerations
316
+
317
+ **Important limitations:**
318
+
319
+ - `dwipe` supports multi-pass wiping with alternating patterns, but does not implement specific DoD 5220.22-M or Gutmann certified pattern sequences
320
+ - More than adequate for **personal and business data** that doesn't require (antiquated) certified destruction
321
+ - **NOT suitable for** classified, top-secret, or highly sensitive data requiring certified pattern-specific wiping with compliance certificates
322
+ - **SSD considerations**:
323
+ - Modern SSDs use wear-leveling and may retain data in unmapped blocks
324
+ - TRIM/DISCARD may prevent complete data erasure
325
+ - For SSDs, consider manufacturer's secure erase utilities for maximum security
326
+ - Random mode may not provide additional security over zeros on SSDs
327
+
328
+ **Best practices:**
329
+ - Verify device labels and sizes carefully before wiping
330
+ - Use the **Lock** feature to protect critical disks
331
+ - Test with `--dry-run` first if unsure
332
+ - Consider encryption for sensitive data as the primary security measure
333
+
334
+ ---
335
+ ---
336
+
337
+ ## Troubleshooting
338
+
339
+ ### dwipe won't start
340
+ - **Error: "cannot find lsblk on $PATH"** - Install `util-linux` package
341
+ - **Permission denied** - `dwipe` automatically requests sudo; ensure you can use sudo
342
+
343
+ ### Terminal display issues
344
+ - **Corrupted display after crash** - Run `reset` or `stty sane` command
345
+ - **Colors don't work** - Ensure your terminal supports colors (most modern terminals do)
346
+
347
+ ### Wipe issues
348
+ - **Can't wipe a device** - Check the STATE column:
349
+ - **Mnt** - Unmount the partition first: `sudo umount /dev/sdXN`
350
+ - **Lock** - Press **l** to unlock
351
+ - **Busy** - Another partition on the disk is being wiped
352
+ - **Wipe is very slow** - Normal for large drives; check write rate to verify progress
353
+ - **Wipe seems stuck** - Most likely due to bad disks; Direct I/O makes progress almost constant on good disks.
354
+
355
+ ---
356
+ ### Dealing with Bad or Failing Disks
357
+
358
+ dwipe includes built-in protections for problematic storage devices:
359
+
360
+ **Automatic Error Handling.** When encountering disk errors during wiping:
361
+ * Consecutive write errors: Wipe aborts after 3 consecutive failed writes
362
+ * Total error threshold: Wipe aborts after 100 total write errors
363
+ * Automatic retry: On write failure, device is automatically closed and reopened (transient error recovery)
364
+ * File descriptor recovery: Bad FD states are detected and handles are refreshed
365
+
366
+ **Stall and Slowdown Detection.** dwipe monitors write performance and can abort problematic operations:
367
+ * Stall detection: Aborts if no progress for 5 minutes (configurable)
368
+ * Slowdown detection: Measures baseline speed during first 5 seconds, aborts if speed drops below threshold (e.g., 1/4 of baseline)
369
+ * Progress tracking: Continuous monitoring ensures writes are actually reaching the device
370
+
371
+ **If a Wipe Gets Stuck...** If a wipe appears frozen or unresponsive:
372
+ * First attempt: Press s to gracefully stop the selected wipe
373
+ * Wait patiently: Some disk operations can take minutes to timeout at the kernel level
374
+ * If still stuck: Press S (Shift+s) to stop ALL wipes
375
+ * Last resort: If the interface is completely frozen:
376
+ * Press Ctrl-Z to suspend `dwipe`
377
+ * In the terminal, run: `sudo pkill -f "python.*dwipe" (targets only dwipe processes)`
378
+ * Run reset to restore terminal if display is corrupted
379
+
380
+ **Preventing Issues with Problematic Media.** For known bad disks or questionable hardware:
381
+ * Start with verification: Press v first to test readability
382
+ * Use lower speeds: Enable dirty page throttling (d key) to reduce I/O pressure
383
+ * Monitor system logs: Check dmesg -w in another terminal for disk errors
384
+ * Consider hardware issues: USB enclosures, cables, and controllers often cause issues
385
+
386
+ **Common Disk Error Patterns**
387
+ * USB connection drops: dwipe will detect and attempt recovery
388
+ * Bad sectors: Errors will be counted; job aborts if excessive
389
+ * Controller timeouts: Kernel may hang; stall detection should trigger
390
+ * Full disk: Write past end-of-device errors are handled gracefully
391
+
392
+ **Recovery After Abort.** If a wipe aborts due to disk errors:
393
+ * Device state shows s (stopped/partial)
394
+ * You can attempt to resume (w) - may succeed if error was transient
395
+ * Or verify (v) to see what was actually written
396
+ * Consider replacing the disk if errors persist
397
+
398
+ Note: Some disks are fundamentally broken and cannot be reliably wiped. dwipe will protect itself and your system, but cannot fix hardware failures.
399
+
400
+ ---
401
+
402
+ ### Contributing
403
+ Issues and pull requests welcome at [github.com/joedefen/dwipe](https://github.com/joedefen/dwipe)
404
+
405
+ ## License
406
+
407
+ MIT License - see [LICENSE](LICENSE) file for details.