about summary refs log tree commit diff
path: root/frida_mode/test/js/entry.js
diff options
context:
space:
mode:
authorWorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com>2021-07-06 08:09:43 +0100
committerGitHub <noreply@github.com>2021-07-06 09:09:43 +0200
commit2a433f90c456b19cf9aa39384540f618c6eeb1a8 (patch)
treed5c44a780cd74a7b1931a7bd17ac8ad4bc0d65e4 /frida_mode/test/js/entry.js
parentbf9a15541888ac8836a70b4d01c2c9e7bd940051 (diff)
downloadafl++-2a433f90c456b19cf9aa39384540f618c6eeb1a8.tar.gz
Improved OSX support (#1005)
Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'frida_mode/test/js/entry.js')
-rw-r--r--frida_mode/test/js/entry.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/frida_mode/test/js/entry.js b/frida_mode/test/js/entry.js
index f10ef2d1..0b233ddb 100644
--- a/frida_mode/test/js/entry.js
+++ b/frida_mode/test/js/entry.js
@@ -9,8 +9,9 @@ new ModuleMap().values().forEach(m => {
     Afl.print(`${m.base}-${m.base.add(m.size)} ${m.name}`);
 });
 
+Afl.print('Searching...\n');
 const entry_point = DebugSymbol.fromName('run');
-Afl.print(`entry_point: ${entry_point.address}`);
+Afl.print(`entry_point: ${entry_point}`);
 
 Afl.setEntryPoint(entry_point.address);