diff options
| author | Your Name <you@example.com> | 2021-08-20 17:28:40 +0100 |
|---|---|---|
| committer | Your Name <you@example.com> | 2021-08-20 17:28:40 +0100 |
| commit | 028f8ced8f772d82a7efc522ec629bf4a5fff32d (patch) | |
| tree | f5440087d2779984812b5e8c50f1fda6bdbb489b /frida_mode/Scripting.md | |
| parent | 3513ba2e51222151945e8ae87236bb9d2f07f37a (diff) | |
| download | afl++-028f8ced8f772d82a7efc522ec629bf4a5fff32d.tar.gz | |
Fixed coverage on OSX (dependency on pipe2)
Removed use of 'realpath' in makefiles to fix OSX incompatibility Fixed handling of when prefetching should be enabled Snap the main binary during initialization to avoid stability issues with lazy loading Add support for configurable inline cache entries for FRIDA on x86/x64 Support for prefetching FRIDA backpatches on x86/x64 Improved stats support on x86/x64/aarch64
Diffstat (limited to 'frida_mode/Scripting.md')
| -rw-r--r-- | frida_mode/Scripting.md | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/frida_mode/Scripting.md b/frida_mode/Scripting.md index 5467db99..f6017fad 100644 --- a/frida_mode/Scripting.md +++ b/frida_mode/Scripting.md @@ -80,7 +80,6 @@ Afl.setInstrumentEnableTracing(); Afl.setInstrumentTracingUnique(); Afl.setStatsFile("/tmp/stats.txt"); Afl.setStatsInterval(1); -Afl.setStatsTransitions(); /* *ALWAYS* call this when you have finished all your configuration */ Afl.done(); @@ -834,13 +833,6 @@ class Afl { } /** - * See `AFL_FRIDA_STATS_TRANSITIONS` - */ - public static setStatsTransitions(): void { - Afl.jsApiSetStatsTransitions(); - } - - /** * See `AFL_FRIDA_OUTPUT_STDERR`. This function takes a single `string` as * an argument. */ |
