-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagisk.html
90 lines (79 loc) · 4.37 KB
/
magisk.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Magisk Repository</title>
<link rel="icon" href="images/cogwheel_nice_android.svg">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<p class="hidden" id="lang">english</p>
<p class="hidden" id="page">1</p>
<div id="bgImage">
<img src="images/magisk-svgrepo-com.svg" alt="">
</div>
<!-- Navigation Bar -->
<nav id="nav" style="max-height: 80px;">
<div class="sideMargins"></div>
</nav>
<script src="js/nav.js"></script>
<!-- Navigation Bar -->
<div id="content">
<section id="magiskDesc" class="sectionPadding">
<div class="card magiskCard">
<img src="images/magisk-trimmed.png" alt="">
<div>
<p><strong>Magisk</strong> (Magic Mask for Android) is a suite of open source software for customizing Android, supporting devices higher than Android 5.0. Some highlight features:</p>
<ul>
<li><strong>MagiskSU:</strong> Provide root access for applications</li>
<li><strong>Magisk Modules:</strong> Modify read-only partitions by installing modules</li>
<li><strong>MagiskBoot:</strong> The most complete tool for unpacking and repacking Android boot images</li>
<li><strong>Zygisk:</strong> Run code in every Android applications' processes</li>
</ul>
<div class="filler"></div>
<div>
<button class="btnCommon btnWhite" onclick="window.open('https://github.com/topjohnwu/Magisk','_blank')">Learn More</button>
<button class="btnCommon btnColor" onclick="window.open('https://github.com/topjohnwu/Magisk/releases','_blank')">Download</button>
</div>
</div>
</div>
<div class="card magiskCard" id="recentChanges">
<h1>Recent Changes</h1>
<h2>v25.1</h2>
<ul>
<li>[MagiskBoot] Fix ramdisk backup being incorrectly skipped</li>
<li>[MagiskBoot] Add new feature to detect unsupported dtb and abort during installation</li>
<li>[Zygisk] Change binary hijack paths</li>
<li>[App] Fix incorrect recovery mode detection and installation</li>
<li>[MagiskInit] Fix config not properly exported in legacy SAR devices</li>
<li>[General] Enforce the Magisk app to always match or be newer than magiskd</li>
</ul>
<h2>v25.0</h2>
<ul>
<li>[MagiskInit] Update 2SI implementation, significantly increase device compatibility (e.g. Sony Xperia devices)</li>
<li>[MagiskInit] Introduce new sepolicy injection mechanism</li>
<li>[MagiskInit] Support Oculus Go</li>
<li>[MagiskInit] Support Android 13 GKIs (Pixel 6)</li>
<li>[MagiskBoot] Fix vbmeta extraction implementation</li>
<li>[App] Fix stub app on older Android versions</li>
<li>[App] [MagiskSU] Properly support apps using sharedUserId</li>
<li>[MagiskSU] Fix a possible crash in magiskd</li>
<li>[MagiskSU] Prune unused UIDs as soon as system_server restarts to prevent UID reuse attacks</li>
<li>[MagiskSU] Verify and enforce the installed Magisk app’s certificate to match the distributor’s signature</li>
<li>[MagiskSU] [Zygisk] Proper package management and detection</li>
<li>[Zygisk] Fix function hooking on devices running Android 12 with old kernels</li>
<li>[Zygisk] Fix Zygisk’s self code unloading implementation</li>
<li>[DenyList] Fix DenyList on shared UID apps</li>
<li>[BusyBox] Add workaround for devices running old kernels</li>
</ul>
</div>
</section>
</div>
<!-- Footer -->
<section id="footer"></section>
<script src="js/footer.js"></script>
<!-- Footer -->
</body>
</html>