CME-501
Read-Only Root Filesystem
Description
Mounts root filesystem as read-only, preventing persistent modification of system binaries, libraries, and configuration. Writable areas are confined to specific tmpfs or overlay mounts.
CVSS Vector Impacts
| Metric | Transition | Rationale |
|---|---|---|
| Integrity (I) | H → L | Cannot persistently modify system files even with root access |
| Availability (A) | H → L | System recovers original state on reboot |
CWE Relationships
Verification
Check mount options for root filesystem
$ mount | grep 'on / ' | grep 'ro,'
# Expected: ro,
# Expected: ro,
Platform: linux