diff options
author | WorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com> | 2021-06-24 18:46:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-24 19:46:08 +0200 |
commit | f348a35ec6cece54796599865c683505a475fe88 (patch) | |
tree | 38b46a34787b467a203d7432a8a3886b4123d621 /frida_mode/src/lib/lib.c | |
parent | 4057134d3c6ed202d426ebdcc9aa4edf3e122bda (diff) | |
download | afl++-f348a35ec6cece54796599865c683505a475fe88.tar.gz |
Added JS support (#992)
* Added JS support * Added some documentation Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'frida_mode/src/lib/lib.c')
-rw-r--r-- | frida_mode/src/lib/lib.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/frida_mode/src/lib/lib.c b/frida_mode/src/lib/lib.c index 13a7d1e7..59a3fcf9 100644 --- a/frida_mode/src/lib/lib.c +++ b/frida_mode/src/lib/lib.c @@ -6,7 +6,7 @@ #include <sys/mman.h> #include <unistd.h> - #include "frida-gum.h" + #include "frida-gumjs.h" #include "debug.h" @@ -151,6 +151,10 @@ static void lib_get_text_section(lib_details_t *details) { } +void lib_config(void) { + +} + void lib_init(void) { lib_details_t lib_details; |