# CIS Ubuntu 14.04 LTS - 1.4.2 Ensure bootloader password is set

> Verify that a bootloader password is set to prevent unauthorized boot parameter changes

- Skill: `cyberstrikeus/cis-ubuntu-14-04-lts-1-4-2-ensure-bootloader-password-is-set` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cyberstrikeus/cis-ubuntu-14-04-lts-1-4-2-ensure-bootloader-password-is-set`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cyberstrikeus/cis-ubuntu-14-04-lts-1-4-2-ensure-bootloader-password-is-set/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-4-2-ensure-bootloader-password-is-set

---


# 1.4.2 Ensure bootloader password is set (Scored)

## Profile Applicability

- Level 1 - Server
- Level 1 - Workstation

## Description

Setting the boot loader password will require that anyone rebooting the system must enter a password before being able to set command line boot parameters.

## Rationale

Requiring a boot password upon execution of the boot loader will prevent an unauthorized user from entering boot parameters or changing the boot partition. This prevents users from weakening security (e.g. turning off SELinux at boot time).

## Audit Procedure

Run the following commands and verify output matches:

```bash
grep "^set superusers" /boot/grub/grub.cfg
grep "^password" /boot/grub/grub.cfg
```

## Expected Result

```
set superusers="<username>"
password_pbkdf2 <username> <encrypted-password>
```

## Remediation

Create an encrypted password with `grub-mkpasswd-pbkdf2`:

```bash
grub-mkpasswd-pbkdf2
```

Add the following into `/etc/grub.d/00_header` or a custom `/etc/grub.d` configuration file:

```
cat <<EOF
set superusers="<username>"
password_pbkdf2 <username> <encrypted-password>
EOF
```

Run the following command to update the grub2 configuration:

```bash
update-grub
```

## Default Value

No bootloader password is set by default.

## Notes

This recommendation is designed around the grub bootloader, if LILO or another bootloader is in use in your environment enact equivalent settings.

## References

- CIS Controls: 5.1 Minimize And Sparingly Use Administrative Privileges

## Profile

- Level 1 - Server
- Level 1 - Workstation

