用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/cxcscmu/SkillLearnBench --skill cvss-extraction命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | cvss-extraction |
| description | Extract CVSS scores from Trivy JSON output. |
Trivy outputs vulnerabilities with multiple CVSS scores depending on the source (e.g., NVD, RedHat, GHSA). This skill helps you extract the most relevant score.
In the Trivy output, vulnerabilities are nested under Results[] -> Vulnerabilities[]. Inside a vulnerability, CVSS information is stored inside the CVSS dictionary.
{
"CVSS": {
"nvd": {
"V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"V3Score": 9.8
},
"redhat": {
"V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"V3Score": 9.8
},
"ghsa": {
"V3Score": 9.8
}
}
}
You can write a Python helper to extract a CVSS score from these sources, preferring NVD if available, followed by GHSA and RedHat, falling back to "N/A" if none are present.
def extract_cvss(vuln):
cvss_data = vuln.get("CVSS", {})
# Sources in order of preference
for source in ["nvd", "ghsa", "redhat", "ubuntu", "debian", "alpine"]:
if source in cvss_data:
score = cvss_data[source].get("V3Score")
if score is not None:
return score
# Fallback to V2Score if V3 is not present
score = cvss_data[source].get("V2Score")
if score is not None:
return score
return "N/A"
This snippet ensures robust extraction of CVSS scores for reporting purposes.