Capabilities

Magisk Features Explained

Understand the major pieces of the Magisk ecosystem and why the project is more than a simple “root APK.”

Superuser control

MagiskSU

MagiskSU provides root access to applications. The Magisk app acts as the user-facing control point for superuser requests, allowing root privileges to be granted or denied on a per-app basis.

  • Application-level superuser permission flow
  • Part of the Magisk core rather than a separate random root package
  • Useful for advanced tools that genuinely require privileged access
Systemless customization

Magisk Modules

Modules package modifications that can be mounted into the Android environment without directly rewriting read-only system partitions in the old style. That makes changes easier to manage, disable, and remove—but modules still have powerful access and should be treated as trusted code.

  • Modular install/remove model
  • Useful for advanced Android modifications
  • Only install modules from sources you trust and understand
Boot image toolkit

MagiskBoot

MagiskBoot handles unpacking and repacking Android boot images. This capability underpins the modern patch-image installation flow where Magisk modifies a copy of the device’s own stock boot-related image before it is flashed back.

  • Boot image unpack/repack functionality
  • Compression and format handling
  • Core part of patching workflows
Zygote integration

Zygisk

Zygisk enables code from compatible modules to execute within Android application processes through Zygote. It is a powerful integration point intended for module developers and advanced customization.

  • Runs module code in application process context
  • Used by compatible modern Magisk modules
  • Expanded platform support continues through current releases
Systemless approach

Why “systemless” matters

Historically, Android modifications often wrote changes directly into the system partition. Magisk popularized an approach that applies modifications through boot-time mounting and related techniques instead. This can make modifications more manageable, but it does not make rooting risk-free or invisible to every security check.

Root is still privileged access

Systemless does not mean harmless. Root-capable apps and modules can perform powerful operations. Treat every superuser grant and module install like installing administrator-level software on a computer.

Next step

Compare the current release channels.

Review stable and pre-release builds before choosing what belongs on your device.

Download Magisk