diff options
author | van Hauser <vh@thc.org> | 2023-12-05 17:56:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-05 17:56:06 +0100 |
commit | 12505861564c5a3b91220adbb944032a261d6fa4 (patch) | |
tree | 6e66ac8cbdd8237009c24b6f6b51d5f48913ce54 /custom_mutators/examples/example.py | |
parent | 61e27c6b54f7641a168b6acc6ecffb1754c10918 (diff) | |
parent | 638273e4f80ba89ada8a4428a6211ee6b59d964a (diff) | |
download | afl++-12505861564c5a3b91220adbb944032a261d6fa4.tar.gz |
Merge pull request #1923 from AFLplusplus/dev
push to stable
Diffstat (limited to 'custom_mutators/examples/example.py')
-rw-r--r-- | custom_mutators/examples/example.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/custom_mutators/examples/example.py b/custom_mutators/examples/example.py index 3a6d22e4..830f302f 100644 --- a/custom_mutators/examples/example.py +++ b/custom_mutators/examples/example.py @@ -133,6 +133,11 @@ def fuzz(buf, add_buf, max_size): # @return: The buffer containing the test case after # ''' # return buf +# def post_run(): +# ''' +# Called after each time the execution of the target program by AFL++ +# ''' +# pass # # def havoc_mutation(buf, max_size): # ''' |