-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
24 lines (24 loc) · 1 KB
/
data.json
File metadata and controls
24 lines (24 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[
{
"cve_id": "CVE-YYYY-NNNN",
"cve_description": "The description provided by the CVE numbering authority (e.g. NIST NVD).",
"django_description": "The description provided in the official Django security release.",
"cwe": {
"id": "CWE-NNN",
"name": "Name of the Common Weakness Enumeration category"
},
"affected_versions": [
{
"version": "X.Y.Z (The specific version number affected)",
"version_not_affected": "The version number that contains the fix (affected versions are strictly less than this, e.g., < 1.11.29)",
"patches": [
{
"commit": "The full commit hash of the patch applied to this version",
"url": "https://github.com/django/django/commit/<commit_hash>",
"same_as_stable": "Boolean: true if the patch content (diff) is identical to the patch applied to the stable version of Django for this CVE. This helps identify backported patches without changes."
}
]
}
]
}
]