AFL
AFL和Fuzz学习笔记。
参考链接:
- https://blingblingxuanxuan.github.io/2020/06/30/afl/
- liyansong2018/fuzzing-tutorial: Curated list of classic fuzzing books, papers about fuzzing at information security top conferences over the years, commonly used fuzzing tools, and resources that can help us use fuzzer easily. (github.com)
- antonio-morales/Fuzzing101: An step by step fuzzing tutorial. A GitHub Security Lab initiative
- CS研究生如何入门模糊测试方向? - 知乎 (zhihu.com)
安装
AFL
安装clang和llvm
1 | sudo apt-get install clang |
下载并安装AFL
1 | wget http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz |
支持无源码Fuzz
1 | 在afl目录下 |
AFL++
1 | sudo apt intsall afl++ |
常用命令
1 | 编译插桩 |
1 | 分析crash结果 |