0

How do I find all the SELinux policies used for Google Chrome on Fedora Linux?

1 Answers1

0

Are you looking for file contexts? A simple grep ought to find them.

grep -e chrome -e chromium /etc/selinux/targeted/contexts/files/file_contexts*

If you need policy sources from which policies were built, you can find those in the source code on GitHub or by getting the corresponding SRPM for your installed package.

Michael Hampton
  • 237,123
  • 42
  • 477
  • 940