Index Micro HowTos
index of all micro how-tos System Administration |
|
Wednesday, 07 March 2007 |
| | | | | Find suid/sgid files | | | | | | | | | | | | | | | Find all SUID root files: find / -user root -perm -4000 -print Find all SGID root files: find / -group root -perm -2000 -print Find all SUID and SGID files owned by anyone: find / -perm -4000 -o -perm -2000 -print Find all files that are not owned by any user: find / -nouser -print Find all files that are not owned by any group: find / -nogroup -print Find all symlinks and what they point to: find / -type l -ls | | | | | | | | | | | | | | |
|