Fuzzing is one of the powerful strateies for identifying security problems in real world software. it perform the vast majority of remote code execution and privilege escalation bugs found to date in security-critical software.
There are several major fuzzing tools (fuzzer) such as APL, LibFuzzer, HonggFuzz.
Recommentation for beginners.
Among the many software vulnerability discovery techniques available today, fuzzing has remained highly popular due to its conceptual simplicity, its low barrier to deployment, and its vast amount of empirical evidence in discovering real-world software vulnerabilities. At a high level, fuzzing refers to a process of repeatedly running a program with generated inputs that may be syntactically or semantically malformed. While researchers and practitioners alike have invested a large and diverse effort towards improving fuzzing in recent years, this surge of work has also made it difficult to gain a comprehensive and coherent view of fuzzing. To help preserve and bring coherence to the vast literature of fuzzing, this paper presents a unified, general-purpose model of fuzzing together with a taxonomy of the current fuzzing literature. We methodically explore the design decisions at every stage of our model fuzzer by surveying the related literature and innovations in the art, science, and engineering that make modern-day fuzzers effective.
Well Known Fuzzing Tools
AFL(American fuzzy lop) is a free software fuzzer which is developed by Michal Zalewski in Google. Its initial release was 12 November 2013 in github.com/google/AFL.
However, it has unmaintained several years and AFL++(Americal Fuzzy lop plus plus) was replaced by community. AFL++ has employed several advanced patched which is not supported in AFL such as LLVM and QEMU supports.
AFL(American fuzzy lop)
AFL++((American fuzzy lop plus plus)
AFL++ is an open source under APACHE 2.0
github.com/AFLplusplus/AFLplusplus
Researh paper which describes what AFL++ is
aflplus.plus//papers/aflpp-woot2020.pdf
LibFuzzer
'개발 > 검증' 카테고리의 다른 글
FuzzBench란? (0) | 2021.02.08 |
---|