Update README.md
Browse files
README.md
CHANGED
|
@@ -58,7 +58,7 @@ The dataset comprises 15,836 vulnerabilities and **18,435 associated patches**.
|
|
| 58 |
>>> for entry in filtered_entries["train"]:
|
| 59 |
... print(entry["cwe"])
|
| 60 |
... for patch in entry["patches"]:
|
| 61 |
-
... print(f" {patch['commit_message']})
|
| 62 |
...
|
| 63 |
CWE-79 Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting')
|
| 64 |
[PATCH] fix: [security] Fixed a stored XSS vulnerability in user bios. Thanks to Dawid Czarnecki for reporting the issue.
|
|
|
|
| 58 |
>>> for entry in filtered_entries["train"]:
|
| 59 |
... print(entry["cwe"])
|
| 60 |
... for patch in entry["patches"]:
|
| 61 |
+
... print(f" {patch['commit_message']}")
|
| 62 |
...
|
| 63 |
CWE-79 Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting')
|
| 64 |
[PATCH] fix: [security] Fixed a stored XSS vulnerability in user bios. Thanks to Dawid Czarnecki for reporting the issue.
|