mirror of
https://github.com/Kicksecure/security-misc.git
synced 2024-12-11 04:44:22 -05:00
9 lines
162 B
Bash
Executable File
9 lines
162 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Checking for mounted disks..."
|
|
dmsetup ls --target crypt
|
|
echo "WIPE RAM!"
|
|
## TODO: remove -f (fast and insecure mode)
|
|
sdmem -f
|
|
echo "WIPE DONE!"
|