about summary refs log tree commit diff
path: root/frida_mode/include
diff options
context:
space:
mode:
authorWorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com>2021-07-15 19:32:44 +0100
committerGitHub <noreply@github.com>2021-07-15 20:32:44 +0200
commit9e8afcc6156fbcc7b0ed41cde1a5873989b65063 (patch)
treee854fd9b8b8e2e19bcba35713f6c2a375274c02e /frida_mode/include
parent6f03749c734e535cf9488027c692a7ee2591b60f (diff)
downloadafl++-9e8afcc6156fbcc7b0ed41cde1a5873989b65063.tar.gz
Support for setting a fixed seed for the hash function (#1026)
Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'frida_mode/include')
-rw-r--r--frida_mode/include/instrument.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/frida_mode/include/instrument.h b/frida_mode/include/instrument.h
index 695b46af..29f14da9 100644
--- a/frida_mode/include/instrument.h
+++ b/frida_mode/include/instrument.h
@@ -12,6 +12,9 @@ extern gboolean         instrument_unique;
 extern __thread guint64 instrument_previous_pc;
 extern guint64          instrument_hash_zero;
 
+extern gboolean instrument_use_fixed_seed;
+extern guint64  instrument_fixed_seed;
+
 extern uint8_t *__afl_area_ptr;
 extern uint32_t __afl_map_size;