From 358c51a054aa56ce5e19e6cf003f56104c35c1fe Mon Sep 17 00:00:00 2001 From: wangsiyuan <2392948297@qq.com> Date: Fri, 13 Oct 2023 11:12:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20main.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.py b/main.py index 7e9f8ff..4abfcfc 100644 --- a/main.py +++ b/main.py @@ -20,6 +20,7 @@ def attach_method(is_spawn): def main(package_name,script_path,is_spawn): + print(f"script_path: {script_path}") js_code = modules.files_utils.read_javascript(script_path) # print(js_code) modules.command.start_frida() @@ -59,4 +60,5 @@ if __name__ == '__main__': attach_process_name = "Navi" package_name = "com.naviapp" script_path = "./hook_conversions.js" + # script_path = "./r0capture/script.js" main(package_name,script_path, is_spawn)