How do I find all SETUID root files on my server ?

find / -type f ( -perm -04000 -o -perm -02000 ) -exec ls -lg {} ;
Your rating: None