jump to navigation

How to find world writable file and directory Friday, September 14, 2007

Posted by piyut in HP-UX, Solaris.
add a comment

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 {} \;