SUID/SGID Programs

The set user ID (SETUID or SUID) tells linux the executable files that are set to run as the owner of the file, not as the user who launched it.

To Find these:

find / -perm -4000

You can expand upon this by running the following ocmmand

find / -perm -u=s -type f 2>//dev/null