Writable Files and Directories
Writable directories
find / -writable -type d 2>/dev/null
Within depth limit (when full scan stalls)
find / -type f -maxdepth 5 -writable 2>/dev/null
Group-owned writable items
groups
find / -group www 2>/dev/null
find / -writable -type d -group gods 2>/dev/null
find / -writable -type f -group gods 2>/dev/null
User-owned writable items
id
find / -writable -type d -user hades 2>/dev/null
find / -writable -type f -user hades 2>/dev/null
Per-user file ownership audit
find / -user miguel 2>/dev/null