Linux Script to check for SetUID

400 views Asked by At

I need to write a script file to check for SetUID programs with the permission of 4755. How can I do this?

1

There are 1 answers

1
Mattias Andersson On

In bash:

path=/pathtosearch
find $path -perm 4755