├── .gitignore ├── LICENSE ├── README.md ├── automated_root ├── __init__.py ├── files │ ├── arm │ │ ├── libsupol.so │ │ ├── magiskinit │ │ ├── su │ │ └── supolicy │ ├── arm64 │ │ ├── libsupol.so │ │ ├── magiskinit │ │ ├── su │ │ └── supolicy │ └── common │ │ ├── Initd.apk │ │ ├── Magisk.apk │ │ ├── SuperSU.apk │ │ ├── magisk-boot.sh │ │ ├── magisk-root.sh │ │ ├── root.sh │ │ └── unroot.sh └── utils │ ├── __init__.py │ ├── config.py │ ├── device.py │ ├── logger.py │ ├── mtksu.py │ └── switch.py ├── mtk-su.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/README.md -------------------------------------------------------------------------------- /automated_root/__init__.py: -------------------------------------------------------------------------------- 1 | # ~.~ -------------------------------------------------------------------------------- /automated_root/files/arm/libsupol.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/arm/libsupol.so -------------------------------------------------------------------------------- /automated_root/files/arm/magiskinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/arm/magiskinit -------------------------------------------------------------------------------- /automated_root/files/arm/su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/arm/su -------------------------------------------------------------------------------- /automated_root/files/arm/supolicy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/arm/supolicy -------------------------------------------------------------------------------- /automated_root/files/arm64/libsupol.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/arm64/libsupol.so -------------------------------------------------------------------------------- /automated_root/files/arm64/magiskinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/arm64/magiskinit -------------------------------------------------------------------------------- /automated_root/files/arm64/su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/arm64/su -------------------------------------------------------------------------------- /automated_root/files/arm64/supolicy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/arm64/supolicy -------------------------------------------------------------------------------- /automated_root/files/common/Initd.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/common/Initd.apk -------------------------------------------------------------------------------- /automated_root/files/common/Magisk.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/common/Magisk.apk -------------------------------------------------------------------------------- /automated_root/files/common/SuperSU.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/common/SuperSU.apk -------------------------------------------------------------------------------- /automated_root/files/common/magisk-boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/common/magisk-boot.sh -------------------------------------------------------------------------------- /automated_root/files/common/magisk-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/common/magisk-root.sh -------------------------------------------------------------------------------- /automated_root/files/common/root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/common/root.sh -------------------------------------------------------------------------------- /automated_root/files/common/unroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/files/common/unroot.sh -------------------------------------------------------------------------------- /automated_root/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # ~.~ -------------------------------------------------------------------------------- /automated_root/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/utils/config.py -------------------------------------------------------------------------------- /automated_root/utils/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/utils/device.py -------------------------------------------------------------------------------- /automated_root/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/utils/logger.py -------------------------------------------------------------------------------- /automated_root/utils/mtksu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/utils/mtksu.py -------------------------------------------------------------------------------- /automated_root/utils/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/automated_root/utils/switch.py -------------------------------------------------------------------------------- /mtk-su.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0rt1z2/AutomatedRoot/HEAD/mtk-su.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pure-python-adb --------------------------------------------------------------------------------