claudios commited on
Commit
d6b6546
·
1 Parent(s): d1268d2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -0
README.md CHANGED
@@ -1,4 +1,5 @@
1
  ---
 
2
  dataset_info:
3
  features:
4
  - name: func
@@ -30,4 +31,16 @@ configs:
30
  path: data/validation-*
31
  - split: test
32
  path: data/test-*
 
 
 
 
33
  ---
 
 
 
 
 
 
 
 
 
1
  ---
2
+ arxiv: 1801.01681
3
  dataset_info:
4
  features:
5
  - name: func
 
31
  path: data/validation-*
32
  - split: test
33
  path: data/test-*
34
+ task_categories:
35
+ - text-classification
36
+ tags:
37
+ - code
38
  ---
39
+
40
+ This is an unofficial HuggingFace version of "[VulDeePecker: A Deep Learning-Based System for Vulnerability Detection
41
+ ](https://arxiv.org/abs/1801.01681)" MVD dataset.
42
+ ***
43
+ # Multiclass Vulnerability Dataset (MVD)
44
+ MVD is a database for research on multiclass vulnerability detection with deep learning. The dataset is based on the NIST Software Assurance Reference Dataset (SARD) and National Vulnerability Database (NVD). Up to now, it has possessed 181641 code gadgets, covering 40 types of vulnerabilities. Each code gadget in MVD is composed of multiple program statements, which have direct or indirect data-dependence and control-dependence relationships with the library/API function calls. In total, the code gadgets in MVD are extracted from 33409 testcases of SARD and NVD, 138522 code gadgets of which are non-vulnerable and 43119 are vulnerable.
45
+
46
+ In this repository, the compressed file mvd.txt.zip stores 181641 code gadgets and their corresponding labels. The file named label2CWE.txt records the mapping relationship between each label and the corresponding vulnerability. The folder source files contains 33,409 source files for extracting code gadgets.