├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── scripts │ └── telegram_url.py └── workflows │ ├── ci.yml │ └── issue_moderator.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── loader ├── build.gradle.kts └── src │ ├── CMakeLists.txt │ ├── common │ ├── daemon.cpp │ ├── dl.cpp │ ├── files.cpp │ ├── logging.cpp │ ├── misc.cpp │ └── socket_utils.cpp │ ├── external │ └── CMakeLists.txt │ ├── include │ ├── api.hpp │ ├── daemon.h │ ├── dl.h │ ├── files.hpp │ ├── logging.h │ ├── misc.hpp │ ├── native_bridge_callbacks.h │ └── socket_utils.h │ ├── injector │ ├── art_method.hpp │ ├── entry.cpp │ ├── gen_jni_hooks.py │ ├── hook.cpp │ ├── jni_helper.hpp │ ├── jni_hooks.hpp │ ├── module.hpp │ ├── unmount.cpp │ └── zygisk.hpp │ └── ptracer │ ├── main.cpp │ ├── main.hpp │ ├── monitor.cpp │ ├── ptracer.cpp │ ├── utils.cpp │ └── utils.hpp ├── module ├── .gitignore ├── build.gradle.kts └── src │ ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script │ ├── customize.sh │ ├── mazoku │ ├── module.prop │ ├── post-fs-data.sh │ ├── sepolicy.rule │ ├── service.sh │ ├── verify.sh │ └── zygisk-ctl.sh ├── settings.gradle.kts └── zygiskd ├── .cargo └── config.toml ├── Cargo.toml ├── build.gradle.kts └── src ├── companion.rs ├── constants.rs ├── dl.rs ├── main.rs ├── root_impl ├── kernelsu.rs ├── magisk.rs └── mod.rs ├── utils.rs └── zygiskd.rs /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/scripts/telegram_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/.github/scripts/telegram_url.py -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/issue_moderator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/.github/workflows/issue_moderator.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | .cxx 4 | build 5 | local.properties 6 | Cargo.lock 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/gradlew.bat -------------------------------------------------------------------------------- /loader/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/build.gradle.kts -------------------------------------------------------------------------------- /loader/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/CMakeLists.txt -------------------------------------------------------------------------------- /loader/src/common/daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/common/daemon.cpp -------------------------------------------------------------------------------- /loader/src/common/dl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/common/dl.cpp -------------------------------------------------------------------------------- /loader/src/common/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/common/files.cpp -------------------------------------------------------------------------------- /loader/src/common/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/common/logging.cpp -------------------------------------------------------------------------------- /loader/src/common/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/common/misc.cpp -------------------------------------------------------------------------------- /loader/src/common/socket_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/common/socket_utils.cpp -------------------------------------------------------------------------------- /loader/src/external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/external/CMakeLists.txt -------------------------------------------------------------------------------- /loader/src/include/api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/include/api.hpp -------------------------------------------------------------------------------- /loader/src/include/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/include/daemon.h -------------------------------------------------------------------------------- /loader/src/include/dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/include/dl.h -------------------------------------------------------------------------------- /loader/src/include/files.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/include/files.hpp -------------------------------------------------------------------------------- /loader/src/include/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/include/logging.h -------------------------------------------------------------------------------- /loader/src/include/misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/include/misc.hpp -------------------------------------------------------------------------------- /loader/src/include/native_bridge_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/include/native_bridge_callbacks.h -------------------------------------------------------------------------------- /loader/src/include/socket_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/include/socket_utils.h -------------------------------------------------------------------------------- /loader/src/injector/art_method.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/injector/art_method.hpp -------------------------------------------------------------------------------- /loader/src/injector/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/injector/entry.cpp -------------------------------------------------------------------------------- /loader/src/injector/gen_jni_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/injector/gen_jni_hooks.py -------------------------------------------------------------------------------- /loader/src/injector/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/injector/hook.cpp -------------------------------------------------------------------------------- /loader/src/injector/jni_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/injector/jni_helper.hpp -------------------------------------------------------------------------------- /loader/src/injector/jni_hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/injector/jni_hooks.hpp -------------------------------------------------------------------------------- /loader/src/injector/module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/injector/module.hpp -------------------------------------------------------------------------------- /loader/src/injector/unmount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/injector/unmount.cpp -------------------------------------------------------------------------------- /loader/src/injector/zygisk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/injector/zygisk.hpp -------------------------------------------------------------------------------- /loader/src/ptracer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/ptracer/main.cpp -------------------------------------------------------------------------------- /loader/src/ptracer/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/ptracer/main.hpp -------------------------------------------------------------------------------- /loader/src/ptracer/monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/ptracer/monitor.cpp -------------------------------------------------------------------------------- /loader/src/ptracer/ptracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/ptracer/ptracer.cpp -------------------------------------------------------------------------------- /loader/src/ptracer/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/ptracer/utils.cpp -------------------------------------------------------------------------------- /loader/src/ptracer/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/loader/src/ptracer/utils.hpp -------------------------------------------------------------------------------- /module/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/module/.gitignore -------------------------------------------------------------------------------- /module/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/module/build.gradle.kts -------------------------------------------------------------------------------- /module/src/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/module/src/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /module/src/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /module/src/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/module/src/customize.sh -------------------------------------------------------------------------------- /module/src/mazoku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/module/src/mazoku -------------------------------------------------------------------------------- /module/src/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/module/src/module.prop -------------------------------------------------------------------------------- /module/src/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/module/src/post-fs-data.sh -------------------------------------------------------------------------------- /module/src/sepolicy.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/module/src/sepolicy.rule -------------------------------------------------------------------------------- /module/src/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/module/src/service.sh -------------------------------------------------------------------------------- /module/src/verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/module/src/verify.sh -------------------------------------------------------------------------------- /module/src/zygisk-ctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/module/src/zygisk-ctl.sh -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /zygiskd/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/zygiskd/.cargo/config.toml -------------------------------------------------------------------------------- /zygiskd/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/zygiskd/Cargo.toml -------------------------------------------------------------------------------- /zygiskd/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/zygiskd/build.gradle.kts -------------------------------------------------------------------------------- /zygiskd/src/companion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/zygiskd/src/companion.rs -------------------------------------------------------------------------------- /zygiskd/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/zygiskd/src/constants.rs -------------------------------------------------------------------------------- /zygiskd/src/dl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/zygiskd/src/dl.rs -------------------------------------------------------------------------------- /zygiskd/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/zygiskd/src/main.rs -------------------------------------------------------------------------------- /zygiskd/src/root_impl/kernelsu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/zygiskd/src/root_impl/kernelsu.rs -------------------------------------------------------------------------------- /zygiskd/src/root_impl/magisk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/zygiskd/src/root_impl/magisk.rs -------------------------------------------------------------------------------- /zygiskd/src/root_impl/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/zygiskd/src/root_impl/mod.rs -------------------------------------------------------------------------------- /zygiskd/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/zygiskd/src/utils.rs -------------------------------------------------------------------------------- /zygiskd/src/zygiskd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ec1cff/ZygiskNext/HEAD/zygiskd/src/zygiskd.rs --------------------------------------------------------------------------------