-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanic-long
executable file
·33 lines (24 loc) · 1001 Bytes
/
panic-long
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash
if [[ "$UID" != 0 ]]; then
sudo "$0" "$@"
exit
fi
xflock4 & # Lock screen to prevent interruption
for dev in /dev/mapper/luks-*; do # Wipe all mapped LUKS devices
cryptsetup erase "$dev"
done
sync # Sync to ensure new data is written
fstrim -va # TRIM to encourage the drive to zero old blocks
for dev in /dev/mapper/luks-*; do # Wipe twice because we're paranoid
cryptsetup erase "$dev" # Really this is just an excuse to sync and TRIM again
done # And to give the drive slightly more time to zero blocks
sync
fstrim -va
for f in /dev/*; do # Make it clear to an attacker that there's nothing to recover
echo "Panic handler: Device wiped" > "$dev" # Therefore, torture is useless
done
sync
fstrim -va
shutdown now # Shutdown using normal shutdown process. This has 2 benefits:
# - It gives the drive more time to zero old blocks
# - It allows the system to cleanly wipe all RAM instead of relying on power loss