Backups and Restore Points
A backup is useful only after a successful restore test. Keep private evidence out of cloud folders unless it has been sanitized.
Create a backup
cd ~/dedsec-academy
tar -czf backups/lab-$(date +%Y%m%d-%H%M).tar.gz source evidence reports
sha256sum backups/*.tar.gz > backups/SHA256SUMSTest restoration
mkdir -p ~/dedsec-academy/restore-test
tar -xzf backups/lab-YYYYMMDD-HHMM.tar.gz -C ~/dedsec-academy/restore-test
find ~/dedsec-academy/restore-test -type fA backup is useful only after a successful restore test. Keep private evidence out of cloud folders unless it has been sanitized.