File: HOWTO

package info (click to toggle)
borgbackup 1.4.2-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 24,532 kB
  • sloc: python: 26,544; pascal: 3,245; ansic: 2,597; sh: 150; makefile: 133; tcl: 94
file content (10 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
- Install AFL and the requirements for LLVM mode (see docs)
- Compile the fuzzing target, e.g.

  AFL_HARDEN=1 afl-clang-fast main.c -o fuzz-target -O3

  (other options, like using ASan or MSan are possible as well)
- Add additional test cases to testcase_dir
- Run afl, easiest (but inefficient) way;

  afl-fuzz -i testcase_dir -o findings_dir ./fuzz-target