Set Default Group for root Account
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-ubuntu1204-v110-10-3 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis Ubuntu1204 V110 10 3?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-ubuntu1204-v110-10-3)More formats (shields.io, HTML) on the badges page.
---
name: cis-ubuntu1204-v110-10-3
description: "Set Default Group for root Account"
category: cis-os-hardening
version: "1.1.0"
author: cyberstrike-official
tags: [cis, ubuntu, 12.04, linux, root, group, user-management]
cis_id: "10.3"
cis_benchmark: "CIS Ubuntu 12.04 LTS Server Benchmark v1.1.0"
tech_stack: [ubuntu, linux]
cwe_ids: []
chains_with: []
prerequisites: []
severity_boost: {}
---
# 10.3 Set Default Group for root Account (Scored)
## Profile Applicability
- Level 1
## Description
The `usermod` command can be used to specify which group the root user belongs to. This affects permissions of files that are created by the root user.
## Rationale
Using GID 0 for the root account helps prevent root-owned files from accidentally becoming accessible to non-privileged users.
## Audit Procedure
### Using Command Line
```bash
grep "^root:" /etc/passwd | cut -f4 -d:
```
## Expected Result
The command should return `0`.
## Remediation
### Using Command Line
```bash
usermod -g 0 root
```
## Default Value
GID 0 is the default group for root.
## References
- CIS Ubuntu 12.04 LTS Server Benchmark v1.1.0
## Profile
Level 1 - Scored
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Write a short, colloquial summary for a Paperclip summary slot: open with the 1–3 specific, concrete actions the reader needs to take right now to unblock the work, then a brief plain-language status, streaming progress as it works.
Create, comment on, update, and list Paperclip tasks from Hermes using scoped Paperclip API credentials.
Team Mode security research skill. Orchestrates 3 vulnerability hunters and 2 PoC engineers to audit a codebase in parallel, prove exploitability, classify root causes, and calibrate severity by actual exploitability. Use for security review, vulnerability research, exploitability audit, pre-release security check, threat model validation, and `/security-research`. Triggers: 'security-research', 'security research', 'security review', 'vulnerability audit', 'exploitability audit', '보안 리뷰', '취...
Use this skill when adding authentication, handling user input, working with secrets, creating API endpoints, or implementing payment/sensitive features. Provides comprehensive security checklist and patterns.
Java Spring Boot 服务中关于身份验证/授权、验证、CSRF、密钥、标头、速率限制和依赖安全的 Spring Security 最佳实践。