Add dataset card with field descriptions
Browse files
README.md
CHANGED
|
@@ -41,3 +41,26 @@ configs:
|
|
| 41 |
- split: train
|
| 42 |
path: data/train-*
|
| 43 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
- split: train
|
| 42 |
path: data/train-*
|
| 43 |
---
|
| 44 |
+
|
| 45 |
+
# CVE_NVD
|
| 46 |
+
|
| 47 |
+
A curated dataset of 200 CVE vulnerability instances from the National Vulnerability Database (NVD), enriched with exploit PoCs, developer patches, bug reports, sanitizer reports, and GitHub issue context.
|
| 48 |
+
|
| 49 |
+
## Dataset Fields
|
| 50 |
+
|
| 51 |
+
| Field | Description |
|
| 52 |
+
|-------|-------------|
|
| 53 |
+
| `instance_id` | Unique identifier (e.g., `njs.cve-2022-32414`) |
|
| 54 |
+
| `description` | CVE description from NVD |
|
| 55 |
+
| `exploit(poc)_url` | URL to exploit or proof-of-concept |
|
| 56 |
+
| `patch_url` | URL to the developer's patch commit |
|
| 57 |
+
| `weakness_enumeration` | CWE classification |
|
| 58 |
+
| `github_repo` | GitHub repository (owner/repo) |
|
| 59 |
+
| `base_commit` | Base commit hash (pre-patch) |
|
| 60 |
+
| `developers_patch` | Full diff of the developer's fix |
|
| 61 |
+
| `bug_report` | Bug report text |
|
| 62 |
+
| `sanitizer_report` | ASAN/MSAN/UBSAN/TSAN sanitizer output |
|
| 63 |
+
| `sanitizer` | Sanitizer type used |
|
| 64 |
+
| `github_issue` | Full GitHub issue text |
|
| 65 |
+
| `nvd_url` | Link to the NVD entry |
|
| 66 |
+
| `minimized_patch` | Minimized version of the developer's patch |
|