├── .gitignore ├── README.md ├── android ├── backtrace.js ├── common_detections_calls.js ├── dwarf_trace_nested_java_function.js ├── hook_system_load_library.js ├── pinning.js ├── selinux_check.js └── statically_access_root_activity_and_layout.js ├── arm64 ├── hook_svc.js ├── stalk_svc.js └── syscall_table_to_js_obj.py └── unix └── pthread_create_n_task.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secRet-re/frida-scripts/HEAD/README.md -------------------------------------------------------------------------------- /android/backtrace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secRet-re/frida-scripts/HEAD/android/backtrace.js -------------------------------------------------------------------------------- /android/common_detections_calls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secRet-re/frida-scripts/HEAD/android/common_detections_calls.js -------------------------------------------------------------------------------- /android/dwarf_trace_nested_java_function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secRet-re/frida-scripts/HEAD/android/dwarf_trace_nested_java_function.js -------------------------------------------------------------------------------- /android/hook_system_load_library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secRet-re/frida-scripts/HEAD/android/hook_system_load_library.js -------------------------------------------------------------------------------- /android/pinning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secRet-re/frida-scripts/HEAD/android/pinning.js -------------------------------------------------------------------------------- /android/selinux_check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secRet-re/frida-scripts/HEAD/android/selinux_check.js -------------------------------------------------------------------------------- /android/statically_access_root_activity_and_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secRet-re/frida-scripts/HEAD/android/statically_access_root_activity_and_layout.js -------------------------------------------------------------------------------- /arm64/hook_svc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secRet-re/frida-scripts/HEAD/arm64/hook_svc.js -------------------------------------------------------------------------------- /arm64/stalk_svc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secRet-re/frida-scripts/HEAD/arm64/stalk_svc.js -------------------------------------------------------------------------------- /arm64/syscall_table_to_js_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secRet-re/frida-scripts/HEAD/arm64/syscall_table_to_js_obj.py -------------------------------------------------------------------------------- /unix/pthread_create_n_task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secRet-re/frida-scripts/HEAD/unix/pthread_create_n_task.js --------------------------------------------------------------------------------