Linux管理者は、監査要件を満たすために、Linuxサーバーへのルートレベルのコマンドラインアクセス権を持つユーザーのリストを作成しました。管理者は、以下の/etc/passwdファイルと/etc/sudoersファイルを分析します。

監査レポートでは、ルート ユーザーに加えて、ルート レベルのコマンド ライン アクセスを持つユーザーとしてリストされる必要があるのは、次のどのユーザーですか。(2 つ選択してください。)
正解:A,C
The users who have root-level command-line access are those who have either the same user ID (UID) as root, which is 0, or the ability to run commands as root using sudo. Based on the
/etc/passwd and /etc/sudoers files, the users who meet these criteria are:
Carl: Carl has the same UID as root, which is 0, as shown in the /etc/passwd file. This means that Carl can log in as root and execute any command with root privileges.
Mallory: Mallory has the ability to run commands as root using sudo, as shown in the /etc/sudoers file. The line ALL = (ALL) ALL means that any user can run any command as any other user, including root, by using sudo. Mallory can also use the root shell /bin/bash as her login shell, as shown in the /etc/passwd file.