STIGhubSTIGhub
STIGsRMF ControlsCompare
STIGhub— A free STIG search and compliance tool·STIGs updated 3 days ago
Powered by Pylon·Privacy·Terms·© 2026 Beacon Cloud Solutions, Inc.
← Back to Red Hat Enterprise Linux 10 Security Technical Implementation Guide

V-281319

CAT II (Medium)

RHEL 10 must disable core dumps for all users.

Rule ID

SV-281319r1184633_rule

STIG

Red Hat Enterprise Linux 10 Security Technical Implementation Guide

Version

V1R1

CCIs

CCI-000381

Discussion

A core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.

Check Content

Note: If kernel dumps are disabled in accordance with RHEL-10-701090, this requirement is not applicable.

Verify RHEL 10 disables core dumps for all users by issuing the following command:

$ sudo grep -r core /etc/security/ | grep -v '#'
/etc/security/limits.d/core_dumps.conf:* hard core 0

This can be set as a global domain (with the * wildcard) but may be set differently for multiple domains.

If the "core" item is missing or the value is anything other than "0", and the need for core dumps is not documented with the information system security officer as an operational requirement for all domains that have the "core" item assigned, this is a finding.

Fix Text

Configure RHEL 10 to disable core dumps for all users.

Create or edit the setting in a drop-in configuration file:

$ sudo vi /etc/security/limits.d/core_dumps.conf

Add the following line:

* hard core 0

Remove any entries for users or groups with a value set to anything other than "0".