diff options
| author | WorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com> | 2021-06-08 08:55:12 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-08 09:55:12 +0200 |
| commit | c7b9171c103fc80da75d2b9648b62aa87cbe76fd (patch) | |
| tree | f66ce81c3812c1ce6f03aeb23f5a0956b19d517a /frida_mode/src/asan/asan_arm32.c | |
| parent | cd95dfe1e70d5fe3d33a5fed26565a407688568a (diff) | |
| download | afl++-c7b9171c103fc80da75d2b9648b62aa87cbe76fd.tar.gz | |
FRIDA AARCH64 support (#965)
Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'frida_mode/src/asan/asan_arm32.c')
| -rw-r--r-- | frida_mode/src/asan/asan_arm32.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/frida_mode/src/asan/asan_arm32.c b/frida_mode/src/asan/asan_arm32.c new file mode 100644 index 00000000..79475ced --- /dev/null +++ b/frida_mode/src/asan/asan_arm32.c @@ -0,0 +1,28 @@ +#include "frida-gum.h" + +#include "debug.h" + +#include "asan.h" +#include "util.h" + +#if defined(__arm__) +void asan_instrument(const cs_insn *instr, GumStalkerIterator *iterator) { + + UNUSED_PARAMETER(instr); + UNUSED_PARAMETER(iterator); + if (asan_initialized) { + + FATAL("ASAN mode not supported on this architecture"); + + } + +} + +void asan_arch_init(void) { + + FATAL("ASAN mode not supported on this architecture"); + +} + +#endif + |
