mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-07-06 19:34:37 -04:00
8 lines
165 B
Bash
Executable file
8 lines
165 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 -v -f
|
|
echo "WIPE DONE!"
|