# CIS Ubuntu 14.04 LTS - 1.6.1.2 Ensure the SELinux state is enforcing

> Verify that SELinux is set to enforcing mode for mandatory access control

- Skill: `cyberstrikeus/cis-ubuntu-14-04-lts-1-6-1-2-ensure-the-selinux-state-is-enf` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cyberstrikeus/cis-ubuntu-14-04-lts-1-6-1-2-ensure-the-selinux-state-is-enf`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cyberstrikeus/cis-ubuntu-14-04-lts-1-6-1-2-ensure-the-selinux-state-is-enf/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: cyberstrikeus (https://skillmd.com/u/cyberstrikeus)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/cyberstrikeus/cis-ubuntu-14-04-lts-1-6-1-2-ensure-the-selinux-state-is-enf

---


# 1.6.1.2 Ensure the SELinux state is enforcing (Scored)

## Profile Applicability

- Level 2 - Server
- Level 2 - Workstation

## Description

Set SELinux to enable when the system is booted.

## Rationale

SELinux must be enabled at boot time in to ensure that the controls it provides are in effect at all times.

## Audit Procedure

Run the following commands and ensure output matches:

```bash
grep SELINUX=enforcing /etc/selinux/config
sestatus
```

## Expected Result

```
SELINUX=enforcing

SELinux status: enabled
Current mode: enforcing
Mode from config file: enforcing
```

## Remediation

Edit the `/etc/selinux/config` file to set the SELINUX parameter:

```
SELINUX=enforcing
```

## Default Value

Not applicable.

## References

- CIS Controls: 14.4 Protect Information With Access Control Lists

## Profile

- Level 2 - Server
- Level 2 - Workstation

