diff options
| author | WorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com> | 2021-07-06 18:30:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-06 19:30:50 +0200 |
| commit | 4a02118fdae1ed0bd2cb74a775e7bc0d82d91a81 (patch) | |
| tree | dc95c8417d58348f6e9ec1a1bbaa3d0a3bbbd358 /frida_mode/include | |
| parent | 2a433f90c456b19cf9aa39384540f618c6eeb1a8 (diff) | |
| download | afl++-4a02118fdae1ed0bd2cb74a775e7bc0d82d91a81.tar.gz | |
Deferred exclusion support (#1008)
* Deferred exclusion support * Changes to support different hook libraries for QEMU and FRIDA * Changes to collect more stats Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'frida_mode/include')
| -rw-r--r-- | frida_mode/include/entry.h | 3 | ||||
| -rw-r--r-- | frida_mode/include/persistent.h | 3 | ||||
| -rw-r--r-- | frida_mode/include/stalker.h | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/frida_mode/include/entry.h b/frida_mode/include/entry.h index 801c2bbe..cbc5c8c7 100644 --- a/frida_mode/include/entry.h +++ b/frida_mode/include/entry.h @@ -3,7 +3,8 @@ #include "frida-gumjs.h" -extern guint64 entry_point; +extern guint64 entry_point; +extern gboolean entry_reached; void entry_config(void); diff --git a/frida_mode/include/persistent.h b/frida_mode/include/persistent.h index 8f00196c..c79f0143 100644 --- a/frida_mode/include/persistent.h +++ b/frida_mode/include/persistent.h @@ -30,7 +30,10 @@ 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 diff --git a/frida_mode/include/stalker.h b/frida_mode/include/stalker.h index 2136fe52..b5e05d5a 100644 --- a/frida_mode/include/stalker.h +++ b/frida_mode/include/stalker.h @@ -7,6 +7,7 @@ void stalker_config(void); void stalker_init(void); GumStalker *stalker_get(void); void stalker_start(void); +void stalker_trust(void); #endif |
