mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-06-30 19:37:10 -04:00
8 lines
162 B
Bash
Executable file
8 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!"
|