Thread
:
How to find out all SUID,SGID and world writable directories
View Single Post
#
2
(
permalink
)
06-04-2005, 12:28 AM
monk
Senior Member
User
Join Date: Jan 2005
Location: Tibet
My distro: Debian GNU/Linux
Posts: 482
Rep Power:
5
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
monk
View Public Profile
Send a private message to monk
Visit monk's homepage!
Find all posts by monk