Which of the following commands finds all files owned by root that have the SetUID bit set?

December 4, 2021 by Admin

Which of the following commands finds all files owned by root that have the SetUID bit set?

  • find / -user root -perm -4000
  • find / -user 0 -mode +s
  • find / -owner root -setuid
  • find / -owner 0 -permbits 0x100000000
  • find / --filter uid=1 --filter pers=u+s

Leave a Reply