├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── issue_template.yml │ └── pull_request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ └── trusted_ci.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── READMEs ├── README_ar-SA.md ├── README_fr-FR.md ├── README_id-ID.md ├── README_ja-JP.md ├── README_pt-BR.md └── README_vi-VN.md ├── TRANSLATOR.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.c │ ├── elf_util.c │ ├── misc.c │ └── socket_utils.c │ ├── external │ └── CMakeLists.txt │ ├── include │ ├── daemon.h │ ├── elf_util.h │ ├── logging.h │ ├── misc.h │ └── socket_utils.h │ ├── injector │ ├── art_method.h │ ├── clear.c │ ├── entry.cpp │ ├── gen_jni_hooks.py │ ├── hook.cpp │ ├── jni_hooks.hpp │ ├── module.h │ ├── solist.c │ ├── solist.h │ └── zygisk.hpp │ └── ptracer │ ├── main.c │ ├── monitor.c │ ├── monitor.h │ ├── ptracer.c │ ├── utils.c │ └── utils.h ├── module ├── .gitignore ├── build.gradle.kts └── src │ ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script │ ├── customize.sh │ ├── module.prop │ ├── post-fs-data.sh │ ├── sepolicy.rule │ ├── service.sh │ ├── uninstall.sh │ └── verify.sh ├── settings.gradle.kts ├── webroot ├── LICENSE ├── assets │ ├── actions │ │ ├── filled.svg │ │ └── outlined.svg │ ├── back.svg │ ├── close.svg │ ├── content.svg │ ├── delete.svg │ ├── ec-icon.svg │ ├── error.svg │ ├── expand.svg │ ├── home │ │ ├── filled.svg │ │ └── outlined.svg │ ├── mark.svg │ ├── modules │ │ ├── filled.svg │ │ └── outlined.svg │ ├── settings │ │ ├── filled.svg │ │ └── outlined.svg │ ├── tick.svg │ └── warn.svg ├── css │ ├── error.css │ ├── icons.css │ └── index.css ├── fonts │ ├── header.css │ └── poppins.ttf ├── index.html ├── js │ ├── browserRedirect.js │ ├── errorCatcher.js │ ├── errorScreen.js │ ├── kernelsu.js │ ├── language.js │ ├── main.js │ ├── monitorActions.js │ ├── navbar.js │ ├── restoreError.js │ ├── smallPage │ │ ├── errorHistory.js │ │ ├── language.js │ │ └── theme.js │ ├── smallPageDesabler.js │ ├── switcher │ │ └── fontChanger.js │ ├── themes │ │ ├── amoled.js │ │ ├── dark.js │ │ ├── darkNavbar.js │ │ ├── light.js │ │ ├── lightIcon.js │ │ └── lightNavbar.js │ └── translate │ │ ├── actions.js │ │ ├── home.js │ │ ├── modules.js │ │ └── settings.js └── lang │ ├── ar_EG.json │ ├── de_DE.json │ ├── en_US.json │ ├── es_AR.json │ ├── es_ES.json │ ├── es_MX.json │ ├── fr_FR.json │ ├── id_ID.json │ ├── it_IT.json │ ├── ja_JP.json │ ├── ms_MS.json │ ├── nl_NL.json │ ├── pt_BR.json │ ├── ru_RU.json │ ├── tr_TR.json │ ├── uk_UA.json │ ├── vi_VN.json │ └── zh_CN.json └── zygiskd ├── build.gradle.kts └── src ├── LICENSE ├── companion.c ├── companion.h ├── constants.h ├── main.c ├── root_impl ├── apatch.c ├── apatch.h ├── common.c ├── common.h ├── kernelsu.c ├── kernelsu.h ├── magisk.c └── magisk.h ├── utils.c ├── utils.h ├── zygiskd.c └── zygiskd.h /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/.github/ISSUE_TEMPLATE/issue_template.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/.github/ISSUE_TEMPLATE/pull_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/trusted_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/.github/workflows/trusted_ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/README.md -------------------------------------------------------------------------------- /READMEs/README_ar-SA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/READMEs/README_ar-SA.md -------------------------------------------------------------------------------- /READMEs/README_fr-FR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/READMEs/README_fr-FR.md -------------------------------------------------------------------------------- /READMEs/README_id-ID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/READMEs/README_id-ID.md -------------------------------------------------------------------------------- /READMEs/README_ja-JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/READMEs/README_ja-JP.md -------------------------------------------------------------------------------- /READMEs/README_pt-BR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/READMEs/README_pt-BR.md -------------------------------------------------------------------------------- /READMEs/README_vi-VN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/READMEs/README_vi-VN.md -------------------------------------------------------------------------------- /TRANSLATOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/TRANSLATOR.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/gradlew.bat -------------------------------------------------------------------------------- /loader/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/build.gradle.kts -------------------------------------------------------------------------------- /loader/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/CMakeLists.txt -------------------------------------------------------------------------------- /loader/src/common/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/common/daemon.c -------------------------------------------------------------------------------- /loader/src/common/elf_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/common/elf_util.c -------------------------------------------------------------------------------- /loader/src/common/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/common/misc.c -------------------------------------------------------------------------------- /loader/src/common/socket_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/common/socket_utils.c -------------------------------------------------------------------------------- /loader/src/external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/external/CMakeLists.txt -------------------------------------------------------------------------------- /loader/src/include/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/include/daemon.h -------------------------------------------------------------------------------- /loader/src/include/elf_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/include/elf_util.h -------------------------------------------------------------------------------- /loader/src/include/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/include/logging.h -------------------------------------------------------------------------------- /loader/src/include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/include/misc.h -------------------------------------------------------------------------------- /loader/src/include/socket_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/include/socket_utils.h -------------------------------------------------------------------------------- /loader/src/injector/art_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/injector/art_method.h -------------------------------------------------------------------------------- /loader/src/injector/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/injector/clear.c -------------------------------------------------------------------------------- /loader/src/injector/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/injector/entry.cpp -------------------------------------------------------------------------------- /loader/src/injector/gen_jni_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/injector/gen_jni_hooks.py -------------------------------------------------------------------------------- /loader/src/injector/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/injector/hook.cpp -------------------------------------------------------------------------------- /loader/src/injector/jni_hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/injector/jni_hooks.hpp -------------------------------------------------------------------------------- /loader/src/injector/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/injector/module.h -------------------------------------------------------------------------------- /loader/src/injector/solist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/injector/solist.c -------------------------------------------------------------------------------- /loader/src/injector/solist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/injector/solist.h -------------------------------------------------------------------------------- /loader/src/injector/zygisk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/injector/zygisk.hpp -------------------------------------------------------------------------------- /loader/src/ptracer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/ptracer/main.c -------------------------------------------------------------------------------- /loader/src/ptracer/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/ptracer/monitor.c -------------------------------------------------------------------------------- /loader/src/ptracer/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/ptracer/monitor.h -------------------------------------------------------------------------------- /loader/src/ptracer/ptracer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/ptracer/ptracer.c -------------------------------------------------------------------------------- /loader/src/ptracer/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/ptracer/utils.c -------------------------------------------------------------------------------- /loader/src/ptracer/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/loader/src/ptracer/utils.h -------------------------------------------------------------------------------- /module/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/module/.gitignore -------------------------------------------------------------------------------- /module/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/module/build.gradle.kts -------------------------------------------------------------------------------- /module/src/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/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/PerformanC/ReZygisk/HEAD/module/src/customize.sh -------------------------------------------------------------------------------- /module/src/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/module/src/module.prop -------------------------------------------------------------------------------- /module/src/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/module/src/post-fs-data.sh -------------------------------------------------------------------------------- /module/src/sepolicy.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/module/src/sepolicy.rule -------------------------------------------------------------------------------- /module/src/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/module/src/service.sh -------------------------------------------------------------------------------- /module/src/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/module/src/uninstall.sh -------------------------------------------------------------------------------- /module/src/verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/module/src/verify.sh -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /webroot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/LICENSE -------------------------------------------------------------------------------- /webroot/assets/actions/filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/actions/filled.svg -------------------------------------------------------------------------------- /webroot/assets/actions/outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/actions/outlined.svg -------------------------------------------------------------------------------- /webroot/assets/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/back.svg -------------------------------------------------------------------------------- /webroot/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/close.svg -------------------------------------------------------------------------------- /webroot/assets/content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/content.svg -------------------------------------------------------------------------------- /webroot/assets/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/delete.svg -------------------------------------------------------------------------------- /webroot/assets/ec-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/ec-icon.svg -------------------------------------------------------------------------------- /webroot/assets/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/error.svg -------------------------------------------------------------------------------- /webroot/assets/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/expand.svg -------------------------------------------------------------------------------- /webroot/assets/home/filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/home/filled.svg -------------------------------------------------------------------------------- /webroot/assets/home/outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/home/outlined.svg -------------------------------------------------------------------------------- /webroot/assets/mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/mark.svg -------------------------------------------------------------------------------- /webroot/assets/modules/filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/modules/filled.svg -------------------------------------------------------------------------------- /webroot/assets/modules/outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/modules/outlined.svg -------------------------------------------------------------------------------- /webroot/assets/settings/filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/settings/filled.svg -------------------------------------------------------------------------------- /webroot/assets/settings/outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/settings/outlined.svg -------------------------------------------------------------------------------- /webroot/assets/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/tick.svg -------------------------------------------------------------------------------- /webroot/assets/warn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/assets/warn.svg -------------------------------------------------------------------------------- /webroot/css/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/css/error.css -------------------------------------------------------------------------------- /webroot/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/css/icons.css -------------------------------------------------------------------------------- /webroot/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/css/index.css -------------------------------------------------------------------------------- /webroot/fonts/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/fonts/header.css -------------------------------------------------------------------------------- /webroot/fonts/poppins.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/fonts/poppins.ttf -------------------------------------------------------------------------------- /webroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/index.html -------------------------------------------------------------------------------- /webroot/js/browserRedirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/browserRedirect.js -------------------------------------------------------------------------------- /webroot/js/errorCatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/errorCatcher.js -------------------------------------------------------------------------------- /webroot/js/errorScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/errorScreen.js -------------------------------------------------------------------------------- /webroot/js/kernelsu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/kernelsu.js -------------------------------------------------------------------------------- /webroot/js/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/language.js -------------------------------------------------------------------------------- /webroot/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/main.js -------------------------------------------------------------------------------- /webroot/js/monitorActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/monitorActions.js -------------------------------------------------------------------------------- /webroot/js/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/navbar.js -------------------------------------------------------------------------------- /webroot/js/restoreError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/restoreError.js -------------------------------------------------------------------------------- /webroot/js/smallPage/errorHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/smallPage/errorHistory.js -------------------------------------------------------------------------------- /webroot/js/smallPage/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/smallPage/language.js -------------------------------------------------------------------------------- /webroot/js/smallPage/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/smallPage/theme.js -------------------------------------------------------------------------------- /webroot/js/smallPageDesabler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/smallPageDesabler.js -------------------------------------------------------------------------------- /webroot/js/switcher/fontChanger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/switcher/fontChanger.js -------------------------------------------------------------------------------- /webroot/js/themes/amoled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/themes/amoled.js -------------------------------------------------------------------------------- /webroot/js/themes/dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/themes/dark.js -------------------------------------------------------------------------------- /webroot/js/themes/darkNavbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/themes/darkNavbar.js -------------------------------------------------------------------------------- /webroot/js/themes/light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/themes/light.js -------------------------------------------------------------------------------- /webroot/js/themes/lightIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/themes/lightIcon.js -------------------------------------------------------------------------------- /webroot/js/themes/lightNavbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/themes/lightNavbar.js -------------------------------------------------------------------------------- /webroot/js/translate/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/translate/actions.js -------------------------------------------------------------------------------- /webroot/js/translate/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/translate/home.js -------------------------------------------------------------------------------- /webroot/js/translate/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/translate/modules.js -------------------------------------------------------------------------------- /webroot/js/translate/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/js/translate/settings.js -------------------------------------------------------------------------------- /webroot/lang/ar_EG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/ar_EG.json -------------------------------------------------------------------------------- /webroot/lang/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/de_DE.json -------------------------------------------------------------------------------- /webroot/lang/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/en_US.json -------------------------------------------------------------------------------- /webroot/lang/es_AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/es_AR.json -------------------------------------------------------------------------------- /webroot/lang/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/es_ES.json -------------------------------------------------------------------------------- /webroot/lang/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/es_MX.json -------------------------------------------------------------------------------- /webroot/lang/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/fr_FR.json -------------------------------------------------------------------------------- /webroot/lang/id_ID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/id_ID.json -------------------------------------------------------------------------------- /webroot/lang/it_IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/it_IT.json -------------------------------------------------------------------------------- /webroot/lang/ja_JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/ja_JP.json -------------------------------------------------------------------------------- /webroot/lang/ms_MS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/ms_MS.json -------------------------------------------------------------------------------- /webroot/lang/nl_NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/nl_NL.json -------------------------------------------------------------------------------- /webroot/lang/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/pt_BR.json -------------------------------------------------------------------------------- /webroot/lang/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/ru_RU.json -------------------------------------------------------------------------------- /webroot/lang/tr_TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/tr_TR.json -------------------------------------------------------------------------------- /webroot/lang/uk_UA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/uk_UA.json -------------------------------------------------------------------------------- /webroot/lang/vi_VN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/vi_VN.json -------------------------------------------------------------------------------- /webroot/lang/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/webroot/lang/zh_CN.json -------------------------------------------------------------------------------- /zygiskd/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/build.gradle.kts -------------------------------------------------------------------------------- /zygiskd/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/LICENSE -------------------------------------------------------------------------------- /zygiskd/src/companion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/companion.c -------------------------------------------------------------------------------- /zygiskd/src/companion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/companion.h -------------------------------------------------------------------------------- /zygiskd/src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/constants.h -------------------------------------------------------------------------------- /zygiskd/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/main.c -------------------------------------------------------------------------------- /zygiskd/src/root_impl/apatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/root_impl/apatch.c -------------------------------------------------------------------------------- /zygiskd/src/root_impl/apatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/root_impl/apatch.h -------------------------------------------------------------------------------- /zygiskd/src/root_impl/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/root_impl/common.c -------------------------------------------------------------------------------- /zygiskd/src/root_impl/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/root_impl/common.h -------------------------------------------------------------------------------- /zygiskd/src/root_impl/kernelsu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/root_impl/kernelsu.c -------------------------------------------------------------------------------- /zygiskd/src/root_impl/kernelsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/root_impl/kernelsu.h -------------------------------------------------------------------------------- /zygiskd/src/root_impl/magisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/root_impl/magisk.c -------------------------------------------------------------------------------- /zygiskd/src/root_impl/magisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/root_impl/magisk.h -------------------------------------------------------------------------------- /zygiskd/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/utils.c -------------------------------------------------------------------------------- /zygiskd/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/utils.h -------------------------------------------------------------------------------- /zygiskd/src/zygiskd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/zygiskd.c -------------------------------------------------------------------------------- /zygiskd/src/zygiskd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerformanC/ReZygisk/HEAD/zygiskd/src/zygiskd.h --------------------------------------------------------------------------------