用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-bind-v100-8-7命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | cis-bind-v100-8-7 |
| description | Ensure Signing Keys are Unique (Automated) |
| category | cis-bind |
| version | 1.0 |
| author | cyberstrike-official |
| tags | ["cis","bind","dns","isc-bind","bind9","dnssec"] |
| cis_id | 8.7 |
| cis_benchmark | CIS ISC BIND DNS Server 9.11 Benchmark v1.0.0 |
| tech_stack | ["bind","isc-bind","dns","linux"] |
| cwe_ids | ["CWE-323"] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Each zone should have a unique Zone Signing Keys (ZSK) and a unique Key Signing Keys (KSK) that is different from all other keys.
The ZSK key typically has a shorter expiration date then the KSK, and should be unique from the KSK as well as keys used for other zones. If a private key is compromised, the damage is limited to unique key that was disclosed, rather the compromising multiple zones.
Not specified.
To verify each key is unique, and has unique zone usage, perform the following:
# find $KEYDIR -name '*.key' | xargs grep -ho 'DNSKEY .*' | sort | uniq -c
The count occurrences preceding each key should be one in the output.
# find $KEYDIR -name '*.key' | xargs grep -l ' <key value>
To remediate a duplicate key, perform the following:
# dnssec-keygen -a ECDSAP256SHA256 example.org
Not specified.
None listed in benchmark.
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v7 | N/A | N | N | N |
| Tactic | Technique |
|---|---|
| Credential Access | T1552 Unsecured Credentials |