-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathINSTALL
More file actions
19 lines (16 loc) · 827 Bytes
/
Copy pathINSTALL
File metadata and controls
19 lines (16 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
## test the installation
In the virtual machine we provided, open a terminal.
```
source /home/icse22ae/Dependency/environment.sh
cd /home/icse22ae/Dependency/workdir/workdir/dev_cdrom
python3 run.py
```
It would run one fuzzing on kernel module cdrom and analysis for 5 mins in
`/home/icse22ae/Dependency/workdir/workdir/dev_cdrom/0`.
Inside `/home/icse22ae/Dependency/workdir/workdir/dev_cdrom/0`, there will be:
- log_dra.log: log for our analysis program, there will be one line
`#time : GetVmOffsets`.
- log_syzkaller.log: log for fuzzing program(syzkaller), there will be lines like
`VMs 32, executed 0, cover 0, crashes 0, repro 0`.
- `dataDependency.bin`, `dataResult.bin`, `dataRunTime.bin`, `statistics.bin`: the results in protobuf format
Once find those ourput, it means that our tools work well.