1
0
mirror of synced 2025-12-19 18:06:02 -05:00

Add disclosure JSON example to cve.md skill

Based on LLM feedback: "I would have appreciated a quick example showing
what a typical _embedded.disclosures[] entry looks like"

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Rich Lander
2025-12-16 20:33:23 -08:00
parent 1e4cc94761
commit 831bd0a5e2

View File

@@ -108,6 +108,22 @@ Each `_embedded.disclosures[]` entry contains:
| `affected_releases` | Array of .NET versions (e.g., ["8.0", "9.0"]) |
| `fixes[]` | Commit diff URLs per release branch |
Example:
```json
{
"id": "CVE-2025-55315",
"title": ".NET Security Feature Bypass Vulnerability",
"cvss_score": 9.9,
"cvss_severity": "CRITICAL",
"affected_releases": ["8.0", "9.0", "10.0"],
"fixes": [
{ "href": "https://github.com/dotnet/aspnetcore/commit/abc123.diff", "release": "8.0" },
{ "href": "https://github.com/dotnet/aspnetcore/commit/def456.diff", "release": "9.0" }
]
}
```
## Severity Levels
| Severity | CVSS Range |