diff options
author | van Hauser <vh@thc.org> | 2021-07-19 10:54:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-19 10:54:12 +0200 |
commit | 815161827689c339d335233b7b232ac9b120b79b (patch) | |
tree | 4e686574ccf1f47cea79fc24514c8455e3a1fbc1 /frida_mode/include/persistent.h | |
parent | 9321a24e682b5c8bf6278961bd014cb883b87295 (diff) | |
parent | cc57cc5f463e9b79980c2087d19b4a1e1360ec52 (diff) | |
download | afl++-815161827689c339d335233b7b232ac9b120b79b.tar.gz |
Merge branch 'release' into stable
Diffstat (limited to 'frida_mode/include/persistent.h')
-rw-r--r-- | frida_mode/include/persistent.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/frida_mode/include/persistent.h b/frida_mode/include/persistent.h index c79f0143..25b44ab0 100644 --- a/frida_mode/include/persistent.h +++ b/frida_mode/include/persistent.h @@ -2,7 +2,7 @@ #ifndef _PERSISTENT_H #define _PERSISTENT_H -#include "frida-gumjs.h" +#include "frida-gum.h" #include "config.h" typedef struct arch_api_regs api_regs; @@ -19,10 +19,9 @@ extern unsigned char *__afl_fuzz_ptr; extern guint64 persistent_start; extern guint64 persistent_count; extern guint64 persistent_ret; +extern guint64 persistent_ret_offset; extern gboolean persistent_debug; -extern afl_persistent_hook_fn persistent_hook; - -void persistent_config(void); +extern afl_persistent_hook_fn hook; void persistent_init(void); @@ -30,10 +29,7 @@ void persistent_init(void); gboolean persistent_is_supported(void); void persistent_prologue(GumStalkerOutput *output); -void persistent_prologue_arch(GumStalkerOutput *output); - void persistent_epilogue(GumStalkerOutput *output); -void persistent_epilogue_arch(GumStalkerOutput *output); #endif |