Finding Writable Files and Directories
Command:
find / -path /proc -prune -o -type d -perm -o+w 2>/dev/null
Description: Find world-writable directories.
Command:
find / -path /proc -prune -o -type f -perm -o+w 2>/dev/null
Description: Find world-writable files.
Last updated