STIGhubSTIGhub
STIGsRMF ControlsCompare

STIGhub

A free tool to search and browse the entire DISA STIG library. Saves up to 75% in security compliance research time.

Navigation

  • Browse STIGs
  • Search
  • RMF Controls
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated 4 hours ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to Oracle Linux 8 Security Technical Implementation Guide

V-248722

CAT II (Medium)

The OL 8 audit system must be configured to audit the execution of privileged functions and prevent all software from executing at higher privilege levels than users executing the software.

Rule ID

SV-248722r1156669_rule

STIG

Oracle Linux 8 Security Technical Implementation Guide

Version

V2R8

CCIs

CCI-002233CCI-002234

Discussion

Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat. Satisfies: SRG-OS-000326-GPOS-00126, SRG-OS-000327-GPOS-00127

Check Content

Verify OL 8 audits the execution of privileged functions. 
 
Check if OL 8 is configured to audit the execution of the "execve" system call, by running the following command: 
 
$ sudo grep execve /etc/audit/audit.rules 
 
-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 key=execpriv 
-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 key=execpriv 
 
-a always,exit -F arch=b32 -S execve -C gid!=egid -F euid=0 key=execpriv 
-a always,exit -F arch=b64 -S execve -C gid!=egid -F euid=0 key=execpriv
 
If the command does not return all lines or the lines are commented out, this is a finding.

Fix Text

Configure OL 8 to audit the execution of the "execve" system call. 
 
Add or update the following file system rules to "/etc/audit/rules.d/audit.rules": 
 
-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 key=execpriv 
-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 key=execpriv 
 
-a always,exit -F arch=b32 -S execve -C gid!=egid -F euid=0 key=execpriv 
-a always,exit -F arch=b64 -S execve -C gid!=egid -F euid=0 key=execpriv
 
The audit daemon must be restarted for the changes to take effect. To restart the audit daemon, run the following command: 
 
$ sudo service auditd restart