oss-fuzz/docs/glossary.md

18 lines
730 B
Markdown
Raw Normal View History

2016-11-21 22:29:12 +00:00
# Fuzzing Gloassary
TODO
Naming things is hard. This page tries to reduce confusion around naming.
2016-11-21 22:37:27 +00:00
## Fuzz Target**
Or **Target Function** or **Fuzzing Target Function**.<BR>
A function to which we apply fuzzing.
2016-11-21 22:29:12 +00:00
A [specific signature](libfuzzer.info#fuzz-target) must be used for OSS-Fuzz.
2016-11-21 22:37:27 +00:00
Examples: [openssl](https://github.com/openssl/openssl/blob/master/fuzz/x509.c),
[SQLite](https://www.sqlite.org/src/artifact/ad79e867fb504338),
[e2](https://github.com/google/re2/blob/master/re2/fuzzing/re2_fuzzer.cc).
A Fuzz Target can and should also be used for regression testing
and for reproducing bug reports, see [ideal integration](ideal_integration.md).
2016-11-21 22:29:58 +00:00
* **Fuzzing Engine** a program that tries to find interesting inputs