diff options
author | van Hauser <vh@thc.org> | 2022-12-20 14:31:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-20 14:31:09 +0100 |
commit | 60dc37a8cf09f8e9048e4b6a2204d6c90b27655a (patch) | |
tree | ab66c723be9ccadde42329cc85de1c141f8bddcd /docs/fuzzing_in_depth.md | |
parent | 8cdc48f73a17ddd557897f2098937a8ba3bfe184 (diff) | |
parent | 0165ca8c6c485e36fe8e5fc6182ebeba2100932b (diff) | |
download | afl++-60dc37a8cf09f8e9048e4b6a2204d6c90b27655a.tar.gz |
Merge pull request #1592 from AFLplusplus/dev
Dev
Diffstat (limited to 'docs/fuzzing_in_depth.md')
-rw-r--r-- | docs/fuzzing_in_depth.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/fuzzing_in_depth.md b/docs/fuzzing_in_depth.md index a0bf1566..87f31a58 100644 --- a/docs/fuzzing_in_depth.md +++ b/docs/fuzzing_in_depth.md @@ -900,6 +900,13 @@ then color-codes the input based on which sections appear to be critical and which are not; while not bulletproof, it can often offer quick insights into complex file formats. +`casr-afl` from [CASR](https://github.com/ispras/casr) tools provides +comfortable triaging for crashes found by AFL++. Reports are clustered and +contain severity and other information. +```shell +casr-afl -i /path/to/afl/out/dir -o /path/to/casr/out/dir +``` + ## 5. CI fuzzing Some notes on continuous integration (CI) fuzzing - this fuzzing is different to |