Update README.md
Browse files
README.md
CHANGED
|
@@ -22,7 +22,7 @@ dataset_info:
|
|
| 22 |
- name: build_script
|
| 23 |
dtype: string
|
| 24 |
splits:
|
| 25 |
-
- name:
|
| 26 |
num_bytes: 90051
|
| 27 |
num_examples: 25
|
| 28 |
download_size: 25845
|
|
@@ -30,6 +30,26 @@ dataset_info:
|
|
| 30 |
configs:
|
| 31 |
- config_name: default
|
| 32 |
data_files:
|
| 33 |
-
- split:
|
| 34 |
-
path: data/
|
| 35 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
- name: build_script
|
| 23 |
dtype: string
|
| 24 |
splits:
|
| 25 |
+
- name: test
|
| 26 |
num_bytes: 90051
|
| 27 |
num_examples: 25
|
| 28 |
download_size: 25845
|
|
|
|
| 30 |
configs:
|
| 31 |
- config_name: default
|
| 32 |
data_files:
|
| 33 |
+
- split: test
|
| 34 |
+
path: data/test-*
|
| 35 |
---
|
| 36 |
+
|
| 37 |
+
**Dataset Summary**
|
| 38 |
+
dfuzzBench is a dataset tests systems' ability to generate directed inputs to reach a specific target line in the codebase automatically.
|
| 39 |
+
|
| 40 |
+
TODO: Details of the dataset
|
| 41 |
+
|
| 42 |
+
|
| 43 |
+
**Dataset Structure**
|
| 44 |
+
```
|
| 45 |
+
project: (str) - The name of the project.
|
| 46 |
+
level: (str) - The level of difficulty to reach the target based on the first hit time of several traditional undirected fuzzers.
|
| 47 |
+
target_file: (str) - The file path where the target line is located.
|
| 48 |
+
target_line: (int) - The line number of the target line in the target file.
|
| 49 |
+
url: (str) - The url of the project Github repository.
|
| 50 |
+
commit: (str) - The commit hash of the repository when we performed the target line selection.
|
| 51 |
+
patch: (str) - The patch which adds a print statement "HIT TARGET!" at the target line to indicate the target is reached and exit.
|
| 52 |
+
dockerfile: (str) - The Dockerfile of evaluation environment.
|
| 53 |
+
fuzzing_harness: (str) - The fuzzing harness, used by Oss-Fuzz.
|
| 54 |
+
build_script: (str) - The build script to install required dependencies for fuzzing campaigns.
|
| 55 |
+
```
|