用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-ubuntu2004-v300-5-2-6命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | cis-ubuntu2004-v300-5-2-6 |
| description | Ensure sudo authentication timeout is configured |
| category | cis-iam |
| version | 3.0.0 |
| author | cyberstrike-official |
| tags | ["cis","ubuntu","linux","ubuntu-20.04","sudo"] |
| cis_id | 5.2.6 |
| cis_benchmark | CIS Ubuntu Linux 20.04 LTS Benchmark v3.0.0 |
| tech_stack | ["ubuntu","linux"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
sudo caches used credentials for a default of 5 minutes. This is for ease of use when there are multiple administrative tasks to perform. The timeout can be modified to suit local security policies.
A timeout value reduces the window of opportunity for unauthorized privileged sudo access.
Run the following command to verify the default sudo timeout is enabled and no greater than 15 minutes:
# sudo -V | grep "Authentication timestamp timeout:"
Example output:
Authentication timestamp timeout: 15.0 minutes
Verify timeout is not: a negative number (disabled), greater than 15 minutes, and follows local site policy.
Authentication timestamp timeout: 15.0 minutes
(or a value of 15 minutes or less, not negative/disabled)
15 minutes, or doesn't follow local site polity:
Run the visudo command and edit or add the following line:Defaults timestamp_timeout=<N>
Example:
Defaults timestamp_timeout=15
timestamp_timeout=15
v8 - 5.4 Restrict Administrator Privileges to Dedicated Administrator Accounts Restrict administrator privileges to dedicated administrator accounts on enterprise assets. Conduct general computing activities, such as internet browsing, email, and productivity suite use, from the user's primary, non-privileged account.
v7 - 4.3 Ensure the Use of Dedicated Administrative Accounts Ensure that all users with administrative account access use a dedicated or secondary account for elevated activities. This account should only be used for administrative activities and not internet browsing, email, or similar activities.
MITRE ATT&CK Mappings: T1548 | TA0004 | M1026