Files & Archives Cracking
Protected Files
Importance of File Encryption
File Hunting and Identifying Sensitive Files
Command for Hunting Specific File Extensions
for ext in $(echo ".xls .xls* .xltx .csv .od* .doc .doc* .pdf .pot .pot* .pp*"); do
echo -e "\nFile extension: $ext";
find / -name *$ext 2>/dev/null | grep -v "lib\|fonts\|share\|core";
done