|
Posted by Eric Lubow
|
World writable files can be left around by users wanting to make things easier for themselves. It is necessary to be careful about who can write to which files. To find all world writable files:
find /dir -xdev -perm +o=w ! \( -type d -perm +o=t \) ! -type l -print
Powered by AkoComment! |