View Single Post

  #2 (permalink)  
Old 06-04-2005, 12:28 AM
monk's Avatar
monk monk is offline
Senior Member
User
 
Join Date: Jan 2005
Location: Tibet
My distro: Debian GNU/Linux
Posts: 482
Rep Power: 5
monk will become famous soon enough monk will become famous soon enough
Default

To find all SGID files:
find / -xdev -type f -perm +g=s -print

To find all SUID files
find / -xdev -type f -perm +u=s -print

To find all Writable dirs:
find / -xdev -perm +o=w ! \( -type d -perm +o=t \) ! -type l -print
Reply With Quote