forked from ComplianceAsCode/content
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure SELinux variables are not checked when no selinux is enabled The effect of the above missing is that rules checls remediation will attempt changes to the system, but those were not applicable. Also the change communicates with a side effect we observed in OpenSCAP/openscap#1959
- Loading branch information
1 parent
85221e4
commit 4f23065
Showing
3 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<def-group> | ||
<definition class="inventory" id="selinux_is_enabled" version="1"> | ||
<metadata> | ||
<title>SELinux status check</title> | ||
<affected family="unix"> | ||
<platform>multi_platform_all</platform> | ||
</affected> | ||
<description>Check if System has SELinux enabled.</description> | ||
<reference ref_id="cpe:/a:selinux" source="CPE" /> | ||
</metadata> | ||
<criteria operator="AND"> | ||
<criterion comment="enforce is disabled" test_ref="test_etc_selinux_configured" /> | ||
</criteria> | ||
</definition> | ||
|
||
<ind:textfilecontent54_test check="all" check_existence="all_exist" | ||
comment="/selinux/enforce is 1" id="test_etc_selinux_configured" version="1"> | ||
<ind:object object_ref="object_etc_selinux_configured" /> | ||
<ind:state state_ref="state_etc_selinux_configured" /> | ||
</ind:textfilecontent54_test> | ||
|
||
<ind:textfilecontent54_object id="object_etc_selinux_configured" version="1"> | ||
<ind:filepath>/etc/selinux/config</ind:filepath> | ||
<ind:pattern operation="pattern match">^SELINUX=(.*)$</ind:pattern> | ||
<ind:instance datatype="int">1</ind:instance> | ||
</ind:textfilecontent54_object> | ||
|
||
<ind:textfilecontent54_state id="state_etc_selinux_configured" version="1"> | ||
<ind:subexpression datatype="string" | ||
operation="pattern match">^(enforcing|permissive)$</ind:subexpression> | ||
</ind:textfilecontent54_state> | ||
</def-group> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
name: cpe:/a:selinux | ||
title: SELinux enabled on system | ||
check_id: selinux_is_enabled |