組織は MAC スキーム (または GNU/Linux を実行する重要なサーバー) を設計しています。セキュリティ エンジニアは SELinux を調査していますが、ラベル付けコンテキストを読み取る方法について混乱しています。エンジニアはコマンド stat ./secretfile を実行し、次の出力を受け取ります。

上記の出力に示されているラベルの正しい順序を説明しているものは次のうちどれですか?
正解:D
SELinux contexts are typically made up of several components, including the user identity, role, type (also known as domain or type), and MLS (Multi-Level Security) level. The context format is user:role:type:level. In the given output sys:secret:sec_t:s0, 'sys' represents the user identity,
'secret' is the role, 'sec_t' is the type, and 's0' is the MLS level. Understanding SELinux contexts is critical for managing Mandatory Access Control (MAC) in GNU/Linux systems to protect against unauthorized access.