aboutsummaryrefslogtreecommitdiff
path: root/frida_mode/include
diff options
context:
space:
mode:
authorWorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com>2021-05-27 21:33:44 +0100
committerGitHub <noreply@github.com>2021-05-27 22:33:44 +0200
commitf677be5e86a096edbba74cb8c739e8b10850a379 (patch)
tree1335aaa0592d251926a1b0e62acf28ceaba2e41e /frida_mode/include
parent14178141dcdc1a81ea4f4461790ec87f60606985 (diff)
downloadafl++-f677be5e86a096edbba74cb8c739e8b10850a379.tar.gz
Support for AFL_FRIDA_PERSISTENT_RET (#941)
Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'frida_mode/include')
-rw-r--r--frida_mode/include/persistent.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/frida_mode/include/persistent.h b/frida_mode/include/persistent.h
index e58c5301..25b44ab0 100644
--- a/frida_mode/include/persistent.h
+++ b/frida_mode/include/persistent.h
@@ -18,6 +18,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 hook;
void persistent_init(void);
@@ -26,6 +29,7 @@ void persistent_init(void);
gboolean persistent_is_supported(void);
void persistent_prologue(GumStalkerOutput *output);
+void persistent_epilogue(GumStalkerOutput *output);
#endif