fuzz-mut
本项目为南京大学软件学院2022年《自动化测试》课程大作业——基于变异测试的模糊器评估。
项目成员信息如下:
姓名 |
学号 |
戎润祥(组长) |
201250081 |
黄宝俊 |
201250084 |
何富森 |
201250098 |
郑寒超 |
201250150 |
项目结构
└─fuzz-mut
├─AFL-results # 模糊测试生成的结果
│ ├─output_for_cxxfilt
│ │ ├─crashes
│ │ ├─hangs
│ │ └─queue
│ │ └─.state
│ │ ├─auto_extras
│ │ ├─deterministic_done
│ │ ├─redundant_edges
│ │ └─variable_behavior
│ ├─output_for_exiv2
│ │ └─queue
│ │ └─.state
│ │ ├─auto_extras
│ │ ├─deterministic_done
│ │ └─redundant_edges
│ ├─output_for_expat
│ │ └─queue
│ │ └─.state
│ │ ├─auto_extras
│ │ ├─deterministic_done
│ │ ├─redundant_edges
│ │ └─variable_behavior
│ ├─output_for_libxml2
│ │ └─queue
│ │ └─.state
│ │ ├─auto_extras
│ │ ├─deterministic_done
│ │ └─redundant_edges
│ ├─output_for_lrzip
│ │ └─queue
│ │ └─.state
│ │ └─deterministic_done
│ ├─output_for_matio
│ │ ├─crashes
│ │ ├─hangs
│ │ └─queue
│ │ └─.state
│ │ ├─auto_extras
│ │ ├─deterministic_done
│ │ ├─redundant_edges
│ │ └─variable_behavior
│ ├─output_for_nm
│ │ └─queue
│ │ └─.state
│ │ ├─auto_extras
│ │ ├─deterministic_done
│ │ └─redundant_edges
│ ├─output_for_objdump
│ │ ├─crashes
│ │ ├─hangs
│ │ └─queue
│ │ └─.state
│ │ ├─auto_extras
│ │ ├─deterministic_done
│ │ ├─redundant_edges
│ │ └─variable_behavior
│ ├─output_for_podofo
│ │ └─queue
│ │ └─.state
│ │ ├─deterministic_done
│ │ └─redundant_edges
│ ├─output_for_readelf
│ │ ├─crashes
│ │ ├─hangs
│ │ └─queue
│ │ └─.state
│ │ ├─auto_extras
│ │ ├─deterministic_done
│ │ ├─redundant_edges
│ │ └─variable_behavior
│ ├─output_for_size
│ │ └─queue
│ │ └─.state
│ │ ├─auto_extras
│ │ ├─deterministic_done
│ │ └─redundant_edges
│ ├─output_for_sqlite
│ │ ├─crashes
│ │ ├─hangs
│ │ └─queue
│ │ └─.state
│ │ ├─auto_extras
│ │ ├─deterministic_done
│ │ ├─redundant_edges
│ │ └─variable_behavior
│ ├─output_for_strip
│ │ └─queue
│ │ └─.state
│ │ └─deterministic_done
│ ├─output_for_w3m
│ │ ├─hangs
│ │ └─queue
│ │ └─.state
│ │ ├─auto_extras
│ │ ├─deterministic_done
│ │ └─redundant_edges
│ └─output_for_xpdf
│ ├─crashes
│ └─queue
│ └─.state
│ ├─auto_extras
│ ├─deterministic_done
│ └─redundant_edges
├─Imgs-afl # 模糊测试的结果图像
│ ├─img_cxxfilt
│ ├─img_exiv2
│ ├─img_expat
│ ├─img_libxml2
│ ├─img_lrzip
│ ├─img_matio
│ ├─img_nm
│ ├─img_objdump
│ ├─img_podofo
│ ├─img_readelf
│ ├─img_size
│ ├─img_sqlite
│ ├─img_strip
│ ├─img_w3m
│ └─img_xpdf
├─Mull-charts # Mull变异测试的得分表
├─Mull-results # Mull变异测试生成的结果-sqlite文件
│ ├─cxxfilt
│ ├─libxml2
│ ├─lrzip
│ ├─nm
│ ├─objdump
│ ├─readelf
│ ├─size
│ ├─strip
│ ├─w3m
│ └─xpdf
└─Scripts # 运行脚本
fuzz-mut
本项目为南京大学软件学院2022年《自动化测试》课程大作业——基于变异测试的模糊器评估。
项目成员信息如下:
项目结构