diff options
| author | eleguevel <eleguevel@quarkslab.com> | 2023-04-21 12:00:56 +0200 |
|---|---|---|
| committer | eleguevel <eleguevel@quarkslab.com> | 2023-04-21 12:00:56 +0200 |
| commit | 30495e6bfe4119c9be6597ad0def01e7e0cb8a67 (patch) | |
| tree | 8334d1fe824d6275a69b0739f596bf4d2b7c2772 /frida_mode/Scripting.md | |
| parent | 4e5f42cab6b8c501eeaf76ec7ca920089f6e0f3a (diff) | |
| download | afl++-30495e6bfe4119c9be6597ad0def01e7e0cb8a67.tar.gz | |
frida mode: add dynamic loaded code exclusion
Add the AFL_FRIDA_INST_NO_DYNAMIC_LOAD environment variable and its associated JS function setInstrumentNoDynamicLoad to prevent the instrumentation of late dynamic loaded code. Resolve #1708
Diffstat (limited to 'frida_mode/Scripting.md')
| -rw-r--r-- | frida_mode/Scripting.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/frida_mode/Scripting.md b/frida_mode/Scripting.md index 023e4a19..dfd09e7b 100644 --- a/frida_mode/Scripting.md +++ b/frida_mode/Scripting.md @@ -845,6 +845,12 @@ class Afl { Afl.jsApiSetInstrumentLibraries(); } /** + * See `AFL_FRIDA_INST_NO_DYNAMIC_LOAD` + */ + static setInstrumentNoDynamicLoad() { + Afl.jsApiSetInstrumentNoDynamicLoad(); + } + /** * See `AFL_FRIDA_INST_NO_OPTIMIZE` */ static setInstrumentNoOptimize() { |
