GSEC · Question #214
Which of the following utilities provides an efficient way to give specific users permission to use specific system commands at the root level of a Linux operating system?
The correct answer is D. SUDO. The sudo utility allows administrators to grant specific users the ability to run specific commands with root-level privileges in a controlled and auditable way.
Question
Which of the following utilities provides an efficient way to give specific users permission to use specific system commands at the root level of a Linux operating system?
Options
- ASnort
- BApache
- CSSH
- DSUDO
How the community answered
(20 responses)- A5% (1)
- B10% (2)
- C5% (1)
- D80% (16)
Why each option
The sudo utility allows administrators to grant specific users the ability to run specific commands with root-level privileges in a controlled and auditable way.
Snort is a network intrusion detection and prevention system, not a privilege management utility.
Apache is an HTTP web server and has no function related to user privilege delegation.
SSH provides encrypted remote shell access but does not manage which commands specific users may run at the root level.
sudo (superuser do) reads the /etc/sudoers configuration file to determine exactly which users can run which commands as root or another user, providing granular privilege delegation without sharing the root password. This makes it the standard Linux mechanism for controlled privilege escalation on a per-command basis.
Concept tested: Linux sudo utility for granular privilege delegation
Source: https://www.sudo.ws/docs/man/sudo.man/
Topics
Community Discussion
No community discussion yet for this question.