更新 main.py

master
wangsiyuan 2023-10-13 11:12:10 +08:00
parent db7b6cb54a
commit 358c51a054
1 changed files with 2 additions and 0 deletions

View File

@ -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)