how can I find all tool which can setuid like chmod

for security issue ,i would like to find all privilege tools that can setuid

how to do this

HPUX find suid and sgid.

find // -type f \( -perm -004000 -o -perm -002000 \) -exec ls -ald {} \;

thanks for you reply