aboutsummaryrefslogtreecommitdiff
path: root/docs/custom_mutators.md
diff options
context:
space:
mode:
authorDominik Maier <domenukk@gmail.com>2020-03-30 16:45:13 +0200
committerDominik Maier <domenukk@gmail.com>2020-04-01 13:10:06 +0200
commitda1a0249d76edd0c92deb2e74378329e2fff8bc1 (patch)
tree6511861e59cb4a49ecc490871db31a0d933f1018 /docs/custom_mutators.md
parentd07587885cdb35e3e02303aee8381471ab95eb69 (diff)
downloadAFLplusplus-da1a0249d76edd0c92deb2e74378329e2fff8bc1.tar.gz
merged dev
Diffstat (limited to 'docs/custom_mutators.md')
-rw-r--r--docs/custom_mutators.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/custom_mutators.md b/docs/custom_mutators.md
index 2163b2d5..ef97b8d3 100644
--- a/docs/custom_mutators.md
+++ b/docs/custom_mutators.md
@@ -30,7 +30,8 @@ C/C++:
void afl_custom_init(void *afl, unsigned int seed);
size_t afl_custom_fuzz(uint8_t** buf, size_t buf_size, uint8_t* add_buf,
size_t add_buf_size, size_t max_size);
-size_t afl_custom_write_to_testcase(uint8_t* buf, size_t buf_size, uint8_t** out_buf);
+size_t afl_custom_write_to_testcase(uint8_t* buf, size_t buf_size,
+ uint8_t* out_buf, size_t out_buf_size);
uint32_t afl_custom_init_trim(uint8_t* buf, size_t buf_size);
void afl_custom_trim(uint8_t** out_buf, size_t* out_buf_size);
uint32_t afl_custom_post_trim(uint8_t success);
@@ -111,7 +112,7 @@ def queue_new_entry(filename_new_queue, filename_orig_queue):
- `queue_new_entry` (optional):
- This methods is called after adding a new test case to the queue.
+ This methods is called after adding a new test case to the queue.
### Trimming Support
@@ -167,7 +168,7 @@ a fallback to the builtin default trimming routine.
Optionally, the following environment variables are supported:
- `AFL_CUSTOM_MUTATOR_ONLY`
-
+
Disable all other mutation stages. This can prevent broken testcases
(those that your Python module can't work with anymore) to fill up your
queue. Best combined with a custom trimming routine (see below) because