# CIS Ubuntu 14.04 LTS - 1.1.17 Ensure nodev option set on removable media partitions

> Ensure nodev option is set on removable media partitions to prevent special device access

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

---


# 1.1.17 Ensure nodev option set on removable media partitions (Not Scored)

## Profile Applicability

- Level 1 - Server
- Level 1 - Workstation

## Description

The nodev mount option specifies that the filesystem cannot contain special devices.

## Rationale

Removable media containing character and block special devices could be used to circumvent security controls by allowing non-root users to access sensitive device files such as /dev/kmem or the raw disk partitions.

## Audit Procedure

```bash
# Run the following command and verify that the nodev option is set on all
# removable media partitions:
mount
```

## Expected Result

All removable media partitions should have the `nodev` option set.

## Remediation

```bash
# Edit the /etc/fstab file and add nodev to the fourth field (mounting options)
# of all removable media partitions. Look for entries that have mount points
# that contain words such as floppy or cdrom.
# See the fstab(5) manual page for more information.
```

## Default Value

By default, the nodev option is not set on removable media partitions.

## References

- CIS Ubuntu Linux 14.04 LTS Benchmark v2.1.0

## Profile

- Level 1

