303-300 · Question #41
What is the purpose of the Linux Audit system?
The correct answer is C. To detect intrusions and system changes. The Linux Audit system (auditd) is a kernel-level security framework designed to detect intrusions and track system changes - it records security-relevant events like file access, privilege escalation, system calls, and authentication attempts, giving administrators a forensic…
Question
What is the purpose of the Linux Audit system?
Options
- ATo manage system log files
- BTo automate host scans
- CTo detect intrusions and system changes
- DTo manage installed packages
How the community answered
(46 responses)- A4% (2)
- B2% (1)
- C93% (43)
Explanation
The Linux Audit system (auditd) is a kernel-level security framework designed to detect intrusions and track system changes - it records security-relevant events like file access, privilege escalation, system calls, and authentication attempts, giving administrators a forensic trail for compliance and incident response.
Why the distractors are wrong:
- A (manage log files): That's the role of tools like
logrotateorrsyslog; audit logs are just one output of the audit system, not its purpose. - B (automate host scans): Scanning is handled by tools like
OpenSCAPorLynis; the audit system is passive and event-driven, not a scanner. - D (manage packages): Package management belongs to
apt,dnf, orrpm- entirely unrelated.
Memory tip: Think of auditd as a courthouse stenographer - it silently records everything that happens on the system so there's an official record if something goes wrong. The word audit itself means "official examination of records," which maps directly to its function.
Topics
Community Discussion
No community discussion yet for this question.