How to find world writable file and directory
Posted by piyut on Friday, September 14, 2007
To find world writable file:
# find / -type f -perm -o+w -exec ls -l {} \;
To find world writable directory:
# find /home -type d -perm -o+w -exec ls -ld {} \;