1afl-analyze(8) System Manager's Manual afl-analyze(8)
2
3
4
6 afl-analyze
7
8
10 afl-analyze [ options ] -- /path/to/target_app [ ... ]
11
12
14 Required parameters:
15 -i file - input test case to be analyzed by the tool
16
17 Execution control settings:
18 -f file - input file read by the tested program (stdin)
19 -t msec - timeout for each run (1000 ms)
20 -m megs - memory limit for child process (0 MB)
21 -O - use binary-only instrumentation (FRIDA mode)
22 -Q - use binary-only instrumentation (QEMU mode)
23 -U - use unicorn-based instrumentation (Unicorn mode)
24 -W - use qemu-based instrumentation with Wine (Wine mode)
25 -X - use Nyx mode
26
27 Analysis settings:
28 -e - look for edge coverage only, ignore hit counts
29
30 For additional tips, please consult docs/README.md.
31
32 Environment variables used:
33 TMPDIR: directory to use for temporary input files
34 ASAN_OPTIONS: custom settings for ASAN
35 (must contain abort_on_error=1 and symbolize=0)
36 MSAN_OPTIONS: custom settings for MSAN
37 (must contain exitcode=86 and symbolize=0)
38 AFL_ANALYZE_HEX: print file offsets in hexadecimal instead of decimal
39 AFL_KILL_SIGNAL: Signal ID delivered to child processes on timeout, etc.
40 (default: SIGKILL)
41 AFL_FORK_SERVER_KILL_SIGNAL: Kill signal for the fork server on termination
42 (default: SIGTERM). If unset and AFL_KILL_SIGNAL is
43 set, that value will be used.
44 AFL_MAP_SIZE: the shared memory size for that target. must be >= the size
45 the target was compiled for
46 AFL_PRELOAD: LD_PRELOAD / DYLD_INSERT_LIBRARIES settings for target
47 AFL_SKIP_BIN_CHECK: skip checking the location of and the target
48
49
51 AFL++ was written by Michal "lcamtuf" Zalewski and is maintained by
52 Marc "van Hauser" Heuse <mh@mh-sec.de>, Dominik Maier
53 <domenukk@gmail.com>, Andrea Fioraldi <andreafioraldi@gmail.com> and
54 Heiko "hexcoder-" Eissfeldt <heiko.eissfeldt@hexco.de> The homepage of
55 AFL++ is: https://github.com/AFLplusplus/AFLplusplus
56
57
59 Apache License Version 2.0, January 2004
60
61
62
63AFL++ 2023-08-29 afl-analyze(8)