Results 1 to 2 of 2
Hi All,
I know how to search for normal files but can you let me know " How to search for 5 setuid files on the system. Also explain, for ...
- 01-25-2009 #1Just Joined!
- Join Date
- Jan 2009
- Posts
- 3
find setuid files using FIND command
Hi All,
I know how to search for normal files but can you let me know " How to search for 5 setuid files on the system. Also explain, for each file, why setuid mechanism is necessary for the command to function properly"
That was my question. Please give a bit of explaination too. Thanks.
- 02-01-2009 #2
find / -type f \( -perm -4000 -o -perm -2000 \) -print


Reply With Quote