File size: 2,054 Bytes
78bc73a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dad8594
78bc73a
b45eed3
78bc73a
 
500b03e
 
 
 
78bc73a
8cf9fca
 
89a9860
8cf9fca
 
 
 
 
 
89a9860
8cf9fca
 
 
 
 
 
 
 
 
 
 
5686cf1
 
8cf9fca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
configs:
- config_name: default
  data_files:
  - split: test
    path: data/test-*
dataset_info:
  features:
  - name: target_id
    dtype: string
  - name: project
    dtype: string
  - name: level
    dtype: string
  - name: target_file
    dtype: string
  - name: target_line
    dtype: int64
  - name: url
    dtype: string
  - name: commit
    dtype: string
  - name: patch
    dtype: string
  - name: dockerfile
    dtype: string
  - name: fuzzing_harness
    dtype: string
  - name: build_script
    dtype: string
  - name: harness_name
    dtype: string
  - name: realistic_context
    dtype: string
  - name: realistic_call_paths
    dtype: string
  splits:
  - name: test
    num_bytes: 125865708
    num_examples: 317
  download_size: 42082752
  dataset_size: 125865708
---

**Dataset Summary**

dfuzzBench is a dataset tests systems' ability to generate directed inputs to reach a specific target line in the codebase automatically. 

TODO: Details of the dataset


**Dataset Structure**

```
project: (str) - The name of the project.
level: (str) - The level of difficulty to reach the target based on the first hit time of several traditional undirected fuzzers.
target_file: (str) - The file path where the target line is located.
target_line: (int) - The line number of the target line in the target file.
url: (str) - The url of the project Github repository.
commit: (str) - The commit hash of the repository when we performed the target line selection.
patch: (str) - The patch which adds a print statement "HIT TARGET!" at the target line to indicate the target is reached and exit.
dockerfile: (str) - The Dockerfile of evaluation environment.
fuzzing_harness: (str) - The fuzzing harness, used by Oss-Fuzz.
build_script: (str) - The build script to install required dependencies for fuzzing campaigns.
realistic_context: (list) - The source code of programs retrieved with realistic retrieval.
realistic_call_paths: (list) - The valid call paths from fuzzing harness to the target function retrieved from static call graph.
```