-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathmagisk_modules.py
More file actions
998 lines (905 loc) · 45.8 KB
/
magisk_modules.py
File metadata and controls
998 lines (905 loc) · 45.8 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
#!/usr/bin/env python
# This file is part of PixelFlasher https://github.com/badabing2005/PixelFlasher
#
# Copyright (C) 2025 Badabing2005
# SPDX-FileCopyrightText: 2025 Badabing2005
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
# for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
# Also add information on how to contact you by electronic and paper mail.
#
# If your software can interact with users remotely through a computer network,
# you should also make sure that it provides a way for users to get its source.
# For example, if your program is a web application, its interface could
# display a "Source" link that leads users to an archive of the code. There are
# many ways you could offer source, and different solutions will be better for
# different programs; see section 13 for the specific requirements.
#
# You should also get your employer (if you work as a programmer) or school, if
# any, to sign a "copyright disclaimer" for the program, if necessary. For more
# information on this, and how to apply and follow the GNU AGPL, see
# <https://www.gnu.org/licenses/>.
import wx
import wx.lib.mixins.listctrl as listmix
import traceback
import images as images
import darkdetect
import markdown
from wx import html as wx_html
import webbrowser
from datetime import datetime
from runtime import *
from constants import *
from message_box_ex import MessageBoxEx
from i18n import _
# ============================================================================
# Class HtmlWindow
# ============================================================================
class HtmlWindow(wx_html.HtmlWindow):
def OnLinkClicked(self, link):
webbrowser.open(link.GetHref())
def CopySelectedText(self):
selection = self.SelectionToText()
if selection:
data = wx.TextDataObject()
data.SetText(selection)
clipboard = wx.Clipboard.Get()
clipboard.Open()
clipboard.SetData(data)
clipboard.Close()
# ============================================================================
# Class ListCtrl
# ============================================================================
class ListCtrl(wx.ListCtrl, listmix.ListCtrlAutoWidthMixin):
def __init__(self, parent, ID, pos=wx.DefaultPosition, size=wx.DefaultSize, style=0):
wx.ListCtrl.__init__(self, parent, ID, pos, size, style)
listmix.ListCtrlAutoWidthMixin.__init__(self)
# ============================================================================
# Class MagiskModules
# ============================================================================
class MagiskModules(wx.Dialog):
def __init__(self, *args, parent=None, config=None, **kwargs):
if config:
size = (config.magisk_width, config.magisk_height)
else:
size=(MAGISK_WIDTH, MAGISK_HEIGHT)
wx.Dialog.__init__(self, parent, *args, **kwargs, style=wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER, size=size)
self.device = get_phone(True)
if not self.device:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: You must first select a valid device.")
wx.MessageBox(_("❌ ERROR: You must first select a valid device."), _("Error"), wx.OK | wx.ICON_ERROR)
self.Close()
return
self.config = config
self.SetTitle(_("Manage Magisk"))
self.pif_json_path = PIF_JSON_PATH
# Instance variable to store current selected module
self.module = None
self.pi_app = 'gr.nikolasspyr.integritycheck'
self.coords = Coords()
# Message label
self.message_label = wx.StaticText(self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0)
self.message_label.Wrap(-1)
self.message_label.Label = _("When you press the OK button, the Modules with checkbox selected will be enabled and the rest will be disabled.")
if sys.platform == "win32":
self.message_label.SetFont(wx.Font(12, wx.FONTFAMILY_SWISS, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_BOLD, False, "Arial"))
self.message_label.SetForegroundColour(wx.Colour(255, 0, 0))
# Module label
self.modules_label = wx.StaticText(parent=self, id=wx.ID_ANY, label=_("Magisk Modules"))
self.modules_label.SetToolTip(_("Enable / Disable Magisk modules"))
font = wx.Font(12, wx.FONTFAMILY_MODERN, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL)
self.modules_label.SetFont(font)
# Modules list control
if self.CharHeight > 20:
self.il = wx.ImageList(24, 24)
self.idx1 = self.il.Add(images.download_24.GetBitmap())
else:
self.il = wx.ImageList(16, 16)
self.idx1 = self.il.Add(images.download_16.GetBitmap())
self.list = ListCtrl(self, -1, size=wx.Size(-1, self.CharHeight * 18), style = wx.LC_REPORT | wx.LC_SINGLE_SEL )
self.list.SetImageList(self.il, wx.IMAGE_LIST_SMALL)
# Change Log
self.html = HtmlWindow(self, wx.ID_ANY, size=(-1, 320))
if darkdetect.isDark():
black_html = "<!DOCTYPE html>\n<html><body style=\"background-color:#1e1e1e;\"></body></html>"
self.html.SetPage(black_html)
if "gtk2" in wx.PlatformInfo or "gtk3" in wx.PlatformInfo:
self.html.SetStandardFonts()
# Ok button
self.ok_button = wx.Button(self, wx.ID_ANY, _("OK"), wx.DefaultPosition, wx.DefaultSize, 0)
# Install module button
self.install_module_button = wx.Button(self, wx.ID_ANY, _("Install Module"), wx.DefaultPosition, wx.DefaultSize, 0)
self.install_module_button.SetToolTip(_("Install magisk module."))
# update module button
self.update_module_button = wx.Button(self, wx.ID_ANY, _("Update Module"), wx.DefaultPosition, wx.DefaultSize, 0)
self.update_module_button.SetToolTip(_("Update magisk module."))
self.update_module_button.Enable(False)
# UnInstall module button
self.uninstall_module_button = wx.Button(self, wx.ID_ANY, _("Uninstall Module"), wx.DefaultPosition, wx.DefaultSize, 0)
self.uninstall_module_button.SetToolTip(_("Uninstall magisk module."))
self.uninstall_module_button.Enable(False)
# Run Module Action button
self.run_action_button = wx.Button(self, wx.ID_ANY, _("Run Action"), wx.DefaultPosition, wx.DefaultSize, 0)
self.run_action_button.SetToolTip(_("Run Module action.sh."))
self.run_action_button.Enable(False)
# Play Integrity Fix Install button
self.pif_install_button = wx.Button(self, wx.ID_ANY, _("Install Pif / TS / TargetedFix Module"), wx.DefaultPosition, wx.DefaultSize, 0)
self.pif_install_button.SetToolTip(_("Install Play Integrity Fix related modules."))
# ZygiskNext Install button
self.zygisk_next_install_button = wx.Button(self, wx.ID_ANY, _("Install ZygiskNext Module"), wx.DefaultPosition, wx.DefaultSize, 0)
self.zygisk_next_install_button.SetToolTip(_("Install ZygiskNext module."))
# Systemless hosts button
self.systemless_hosts_button = wx.Button(self, wx.ID_ANY, _("Systemless Hosts"), wx.DefaultPosition, wx.DefaultSize, 0)
self.systemless_hosts_button.SetToolTip(_("Add Systemless Hosts Module."))
# Enable zygisk button
self.enable_zygisk_button = wx.Button(self, wx.ID_ANY, _("Enable Zygisk"), wx.DefaultPosition, wx.DefaultSize, 0)
self.enable_zygisk_button.SetToolTip(_("Enable Magisk zygisk (requires reboot)"))
# Disable zygisk button
self.disable_zygisk_button = wx.Button(self, wx.ID_ANY, _("Disable Zygisk"), wx.DefaultPosition, wx.DefaultSize, 0)
self.disable_zygisk_button.SetToolTip(_("Disable Magisk zygisk (requires reboot)"))
# Enable denlylist button
self.enable_denylist_button = wx.Button(self, wx.ID_ANY, _("Enable Denylist"), wx.DefaultPosition, wx.DefaultSize, 0)
self.enable_denylist_button.SetToolTip(_("Enable Magisk denylist"))
# Disable denylist button
self.disable_denylist_button = wx.Button(self, wx.ID_ANY, _("Disable Denylist"), wx.DefaultPosition, wx.DefaultSize, 0)
self.disable_denylist_button.SetToolTip(_("Disable Magisk denylist"))
# Superuser Access button
self.superuser_access_button = wx.Button(self, wx.ID_ANY, _("Superuser Access"), wx.DefaultPosition, wx.DefaultSize, 0)
self.superuser_access_button.SetToolTip(_("Superuser Access (requires reboot)"))
# Refresh
self.refresh_button = wx.Button(self, wx.ID_ANY, _("Refresh"), wx.DefaultPosition, wx.DefaultSize, 0)
self.refresh_button.SetToolTip(_("Refresh Magisk modules list."))
# static line
self.staticline1 = wx.StaticLine(parent=self, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.LI_HORIZONTAL)
# Cancel button
self.cancel_button = wx.Button(self, wx.ID_ANY, _("Cancel"), wx.DefaultPosition, wx.DefaultSize, 0)
# Make the buttons the same size
button_width = self.pif_install_button.GetSize()[0] + 10
self.install_module_button.SetMinSize((button_width, -1))
self.update_module_button.SetMinSize((button_width, -1))
self.uninstall_module_button.SetMinSize((button_width, -1))
self.run_action_button.SetMinSize((button_width, -1))
self.pif_install_button.SetMinSize((button_width, -1))
self.zygisk_next_install_button.SetMinSize((button_width, -1))
self.systemless_hosts_button.SetMinSize((button_width, -1))
self.enable_zygisk_button.SetMinSize((button_width, -1))
self.disable_zygisk_button.SetMinSize((button_width, -1))
self.enable_denylist_button.SetMinSize((button_width, -1))
self.disable_denylist_button.SetMinSize((button_width, -1))
self.superuser_access_button.SetMinSize((button_width, -1))
self.refresh_button.SetMinSize((button_width, -1))
# Label for managing denylist and SU Permissions
management_label = wx.StaticText(parent=self, id=wx.ID_ANY, label=_("To manage denylist or to manage SU permissions, use PixelFlasher's App Manager feature."))
management_label.SetToolTip(_("Use Pixelflasher's App Manager functionality to add/remove items to denylist or su permissions."))
font = management_label.GetFont()
font.SetStyle(wx.FONTSTYLE_ITALIC)
management_label.SetFont(font)
# populate the list
res = self.PopulateList()
if res == -1:
self.Close()
return
self.add_magisk_details()
# Sizers
message_sizer = wx.BoxSizer(wx.HORIZONTAL)
message_sizer.Add((0, 0), 1, wx.EXPAND, 5)
message_sizer.Add(self.message_label, 0, wx.ALL, 20)
message_sizer.Add((0, 0), 1, wx.EXPAND, 5)
h_buttons_sizer = wx.BoxSizer(wx.HORIZONTAL)
h_buttons_sizer.Add((0, 0), 1, wx.EXPAND, 5)
h_buttons_sizer.Add(self.ok_button, 0, wx.ALL, 20)
h_buttons_sizer.Add(self.cancel_button, 0, wx.ALL, 20)
h_buttons_sizer.Add((0, 0), 1, wx.EXPAND, 5)
v_buttons_sizer = wx.BoxSizer(wx.VERTICAL)
v_buttons_sizer.Add(self.install_module_button, 0, wx.TOP | wx.RIGHT, 5)
v_buttons_sizer.Add(self.update_module_button, 0, wx.TOP | wx.RIGHT, 5)
v_buttons_sizer.Add(self.uninstall_module_button, 0, wx.TOP | wx.RIGHT, 5)
v_buttons_sizer.Add(self.run_action_button, 0, wx.TOP | wx.RIGHT, 5)
v_buttons_sizer.Add(self.pif_install_button, 0, wx.TOP | wx.RIGHT, 5)
v_buttons_sizer.Add(self.zygisk_next_install_button, 0, wx.TOP | wx.RIGHT, 5)
v_buttons_sizer.Add(self.systemless_hosts_button, 0, wx.TOP | wx.RIGHT, 5)
v_buttons_sizer.Add(self.enable_zygisk_button, 0, wx.TOP | wx.RIGHT, 5)
v_buttons_sizer.Add(self.disable_zygisk_button, 0, wx.TOP | wx.RIGHT, 5)
v_buttons_sizer.Add(self.enable_denylist_button, 0, wx.TOP | wx.RIGHT, 5)
v_buttons_sizer.Add(self.disable_denylist_button, 0, wx.TOP | wx.RIGHT, 5)
v_buttons_sizer.Add(self.superuser_access_button, 0, wx.TOP | wx.RIGHT, 5)
v_buttons_sizer.Add(self.refresh_button, 0, wx.TOP | wx.RIGHT, 5)
v_buttons_sizer.Add(self.staticline1, 0, wx.TOP | wx.RIGHT, 5)
v_buttons_sizer.AddStretchSpacer()
modules_sizer = wx.BoxSizer(wx.VERTICAL)
modules_sizer.Add(self.list, 1, wx.EXPAND | wx.ALL, 10)
modules_sizer.Add(self.html, 0, wx.EXPAND | wx.ALL, 10)
outside_modules_sizer = wx.BoxSizer(wx.HORIZONTAL)
outside_modules_sizer.Add(modules_sizer, 1, wx.EXPAND | wx.ALL, 0)
outside_modules_sizer.Add(v_buttons_sizer, 0, wx.EXPAND | wx.ALL, 0)
vSizer = wx.BoxSizer(wx.VERTICAL)
vSizer.Add(message_sizer, 0, wx.EXPAND, 5)
vSizer.Add(self.modules_label, 0, wx.LEFT, 10)
vSizer.Add(outside_modules_sizer, 1, wx.EXPAND, 0)
vSizer.Add(management_label, 0, wx.LEFT, 10)
vSizer.Add(h_buttons_sizer, 0, wx.EXPAND, 5)
self.SetSizer(vSizer)
self.SetMinSize((400, 300))
self.Layout()
self.Centre(wx.BOTH)
# Connect Events
self.ok_button.Bind(wx.EVT_BUTTON, self.onOk)
self.install_module_button.Bind(wx.EVT_BUTTON, self.onInstallModule)
self.update_module_button.Bind(wx.EVT_BUTTON, self.onUpdateModule)
self.uninstall_module_button.Bind(wx.EVT_BUTTON, self.onUninstallModule)
self.run_action_button.Bind(wx.EVT_BUTTON, self.onRunModuleAction)
self.pif_install_button.Bind(wx.EVT_BUTTON, self.onInstallPif)
self.zygisk_next_install_button.Bind(wx.EVT_BUTTON, self.onInstallZygiskNext)
self.systemless_hosts_button.Bind(wx.EVT_BUTTON, self.onSystemlessHosts)
self.enable_zygisk_button.Bind(wx.EVT_BUTTON, self.onEnableZygisk)
self.disable_zygisk_button.Bind(wx.EVT_BUTTON, self.onDisableZygisk)
self.enable_denylist_button.Bind(wx.EVT_BUTTON, self.onEnableDenylist)
self.disable_denylist_button.Bind(wx.EVT_BUTTON, self.onDisableDenylist)
self.superuser_access_button.Bind(wx.EVT_BUTTON, self.onSuperuserAccess)
self.refresh_button.Bind(wx.EVT_BUTTON, self.onRefresh)
self.cancel_button.Bind(wx.EVT_BUTTON, self.onCancel)
self.Bind(wx.EVT_LIST_ITEM_SELECTED, self.onItemSelected, self.list)
self.html.Bind(wx.EVT_CONTEXT_MENU, self.onContextMenu)
self.list.Bind(wx.EVT_LEFT_DOWN, self.onModuleSelection)
self.Bind(wx.EVT_SIZE, self.OnResize)
self.Bind(wx.EVT_CLOSE, self.onCancel)
# Autosize the dialog
# self.list.PostSizeEventToParent()
# self.SetSizerAndFit(vSizer)
# a = self.list.GetViewRect()
# self.SetSize(vSizer.MinSize.Width + 120, vSizer.MinSize.Height + 140)
print("\nOpening Magisk Modules Manager ...")
# -----------------------------------------------
# Function PopulateList
# -----------------------------------------------
def PopulateList(self, refresh=False):
assert self.device is not None
if "apatch" in self.device.su_version.lower():
modules = self.device.get_apatch_detailed_modules(refresh)
self.enable_zygisk_button.Enable(False)
self.disable_zygisk_button.Enable(False)
self.systemless_hosts_button.Enable(False)
self.enable_denylist_button.Enable(False)
self.disable_denylist_button.Enable(False)
self.superuser_access_button.Enable(False)
elif "kernelsu" in self.device.su_version.lower():
modules = self.device.get_ksu_detailed_modules(refresh)
self.enable_zygisk_button.Enable(False)
self.disable_zygisk_button.Enable(False)
self.systemless_hosts_button.Enable(False)
self.enable_denylist_button.Enable(False)
self.disable_denylist_button.Enable(False)
self.superuser_access_button.Enable(False)
else:
modules = self.device.get_magisk_detailed_modules(refresh)
self.pif_install_button.Enable(True)
self.list.InsertColumn(0, 'ID', width = -1)
self.list.InsertColumn(1, 'Name', width = -1)
self.list.InsertColumn(2, 'Version', wx.LIST_FORMAT_LEFT, -1)
self.list.InsertColumn(3, 'VersionCode', wx.LIST_FORMAT_LEFT, -1)
self.list.InsertColumn(4, 'Description', wx.LIST_FORMAT_LEFT, -1)
if sys.platform == "win32":
self.list.SetHeaderAttr(wx.ItemAttr(wx.Colour('BLUE'),wx.Colour('DARK GREY'), wx.Font(wx.FontInfo(10).Bold())))
self.list.EnableCheckBoxes()
if modules:
i = 0
for module in modules:
if module.id == '' and module.name == '' or module.dirname == '*':
continue
if module.id == '':
if len(modules) == 1:
continue
else:
index = self.list.InsertItem(i, module.dirname)
else:
index = self.list.InsertItem(i, module.id)
# disable pif button if it is already installed.
if module.id == "playintegrityfix" and "Play Integrity" in module.name:
if module.name == "Play Integrity Fork":
self.pif_json_path = '/data/adb/modules/playintegrityfix/custom.pif.json'
elif module.name == "tricky_store":
self.pif_json_path = '/data/adb/tricky_store/spoof_build_vars'
elif module.name != "Play Integrity NEXT":
self.pif_json_path = '/data/adb/pif.json'
if module.version in ["PROPS-v2.1", "PROPS-v2.0"]:
self.pif_json_path = '/data/adb/modules/playintegrityfix/pif.json'
# disable Systemless Hosts button if it is already installed.
if module.id == "hosts" and module.name == "Systemless Hosts":
self.systemless_hosts_button.Enable(False)
# disable denylist if Magisk is delta
if get_magisk_package() == MAGISK_DELTA_PKG_NAME:
self.enable_denylist_button.Enable(False)
self.disable_denylist_button.Enable(False)
# disable button if self.device is not rooted.
if not self.device.rooted:
self.install_module_button.Enable(False)
self.update_module_button.Enable(False)
self.uninstall_module_button.Enable(False)
self.run_action_button.Enable(False)
self.pif_install_button.Enable(False)
self.zygisk_next_install_button.Enable(False)
self.enable_zygisk_button.Enable(False)
self.disable_zygisk_button.Enable(False)
self.systemless_hosts_button.Enable(False)
self.enable_denylist_button.Enable(False)
self.disable_denylist_button.Enable(False)
self.superuser_access_button.Enable(False)
self.refresh_button.Enable(False)
self.list.SetItemColumnImage(i, 0, -1)
with contextlib.suppress(Exception):
if module.updateAvailable:
self.list.SetItemColumnImage(i, 0, 0)
self.list.SetItem(index, 1, module.name)
self.list.SetItem(index, 2, module.version)
self.list.SetItem(index, 3, module.versionCode)
self.list.SetItem(index, 4, module.description)
if module.state == 'enabled':
self.list.CheckItem(index, check=True)
elif module.state == 'remove':
self.list.SetItemTextColour(index, wx.LIGHT_GREY)
i += 1
self.list.SetColumnWidth(0, -2)
grow_column(self.list, 0, 20)
self.list.SetColumnWidth(1, -2)
grow_column(self.list, 1, 20)
self.list.SetColumnWidth(2, -2)
grow_column(self.list, 2, 20)
self.list.SetColumnWidth(3, -2)
grow_column(self.list, 3, 20)
self.list.SetColumnWidth(4, -2)
grow_column(self.list, 4, 20)
# -----------------------------------------------
# add_magisk_details
# -----------------------------------------------
def add_magisk_details(self):
device = get_phone()
if not device:
return
data = f"Magisk Manager Version: {device.magisk_app_version}\n"
if device.rooted:
data += f"Magisk Version: {device.magisk_version}\n"
data += "\nMagisk Modules"
self.modules_label.SetLabel(data)
# -----------------------------------------------
# __del__
# -----------------------------------------------
def __del__(self):
pass
# -----------------------------------------------
# onModuleSelection
# -----------------------------------------------
def onModuleSelection(self, event):
x,y = event.GetPosition()
row,flags = self.list.HitTest((x,y))
if row == -1:
self.uninstall_module_button.Enable(False)
self.uninstall_module_button.SetLabel(_('Uninstall Module'))
self.run_action_button.Enable(False)
else:
self.uninstall_module_button.Enable(True)
if self.list.GetItemTextColour(row) == wx.LIGHT_GREY:
self.uninstall_module_button.SetLabel(_('Restore Module'))
else:
self.uninstall_module_button.SetLabel(_('Uninstall Module'))
event.Skip()
# -----------------------------------------------
# onItemSelected
# -----------------------------------------------
def onItemSelected(self, event):
self.currentItem = event.Index
device = get_phone()
if not device:
return
if not device.rooted:
return
print(f"Magisk Module {self.list.GetItemText(self.currentItem)} is selected.")
# puml(f":Select Magisk Module {self.list.GetItemText(self.currentItem)};\n")
# Get the module object for the selected item
if "apatch" in (self.device.su_version if self.device else '').lower():
modules = device.get_apatch_detailed_modules(refresh=False)
elif "kernelsu" in (self.device.su_version if self.device else '').lower():
modules = device.get_ksu_detailed_modules(refresh=False)
else:
modules = device.get_magisk_detailed_modules(refresh=False)
self.module = modules[self.currentItem]
self.html.SetPage('')
if self.module.updateAvailable:
self.update_module_button.Enable(True)
if self.module.updateDetails and self.module.updateDetails.changelog:
changelog_md = f"# Change Log:\n{self.module.updateDetails.changelog}"
self.outputMessage(changelog_md)
else:
self.update_module_button.Enable(False)
# if module has has_action then enable run action button
if self.module.hasAction == 'True' or "apatch" in (self.device.su_version if self.device else '').lower() or "kernelsu" in (self.device.su_version if self.device else '').lower():
self.run_action_button.Enable(True)
else:
self.run_action_button.Enable(False)
event.Skip()
# -----------------------------------------------
# outputMessage
# -----------------------------------------------
def outputMessage(self, md_message):
self.html.SetPage('')
# convert markdown to html
html_message = markdown.markdown(md_message)
self.html.SetPage(html_message)
# -----------------------------------------------
# onCancel
# -----------------------------------------------
def onCancel(self, e):
self.EndModal(wx.ID_CANCEL)
# -----------------------------------------------
# onEnableZygisk
# -----------------------------------------------
def onEnableZygisk(self, e):
try:
device = get_phone(True)
if not device:
return
if not device.rooted:
return
print("Enable Zygisk")
self._on_spin('start')
res = device.magisk_enable_zygisk(True)
if res == 0:
self.outputMessage(_("## You need to reboot your device for the changes to take effect."))
except Exception as e:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Exception in function onEnableZygisk")
traceback.print_exc()
finally:
self._on_spin('stop')
# -----------------------------------------------
# onDisableZygisk
# -----------------------------------------------
def onDisableZygisk(self, e):
try:
device = get_phone(True)
if not device:
return
if not device.rooted:
return
print("Disable Zygisk")
self._on_spin('start')
res = device.magisk_enable_zygisk(False)
if res == 0:
self.outputMessage(_("## You need to reboot your device for the changes to take effect."))
except Exception as e:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Exception in function onDisableZygisk")
traceback.print_exc()
finally:
self._on_spin('stop')
# -----------------------------------------------
# onEnableDenylist
# -----------------------------------------------
def onEnableDenylist(self, e):
try:
device = get_phone(True)
if not device:
return
if not device.rooted:
return
print("Enable Denylist")
self._on_spin('start')
device.magisk_enable_denylist(True)
except Exception as e:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Exception in function onEnableDenylist")
traceback.print_exc()
finally:
self._on_spin('stop')
# -----------------------------------------------
# onDisableDenylist
# -----------------------------------------------
def onDisableDenylist(self, e):
try:
device = get_phone(True)
if not device:
return
if not device.rooted:
return
print("Disable Denylist")
self._on_spin('start')
device.magisk_enable_denylist(False)
except Exception as e:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Exception in function onDisableDenylist")
traceback.print_exc()
finally:
self._on_spin('stop')
# -----------------------------------------------
# onSuperuserAccess
# -----------------------------------------------
def onSuperuserAccess(self, e):
try:
device = get_phone(True)
if not device:
return
if not device.rooted:
return
buttons_text = [_("Disabled"), _("Apps Only"), _("ADB Only"), _("Apps and ADB"), _("Cancel")]
dlg = MessageBoxEx(
parent=self,
title=_('Magisk'),
message=_("Superuser Access"),
button_texts=buttons_text,
default_button=1,
disable_buttons=None,
is_md=False,
size=(800, 600),
checkbox_labels=None,
checkbox_initial_values=None,
disable_checkboxes=None,
vertical_checkboxes=False,
checkbox_labels2=None,
checkbox_initial_values2=None,
disable_checkboxes2=None,
radio_labels=None,
radio_initial_value=None,
disable_radios=None,
vertical_radios=False
)
dlg.CentreOnParent(wx.BOTH)
result = dlg.ShowModal()
dlg.Destroy()
print(f"{datetime.now():%Y-%m-%d %H:%M:%S} User Pressed {buttons_text[result -1]}")
value = None
if result <= 4:
value = str(result - 1)
else:
print(f"{datetime.now():%Y-%m-%d %H:%M:%S} User Pressed Cancel.")
print("Aborting ...\n")
return -1
self._on_spin('start')
debug(f"Superuser Access: {value}")
res = device.magisk_modify_root_access(value)
if res == 0:
self.outputMessage(_("## You need to reboot your device for the changes to take effect."))
except Exception as e:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Exception in function onSuperuserAccess")
traceback.print_exc()
finally:
self._on_spin('stop')
# -----------------------------------------------
# onRefresh
# -----------------------------------------------
def onRefresh(self, e):
self.refresh_modules()
# -----------------------------------------------
# onSystemlessHosts
# -----------------------------------------------
def onSystemlessHosts(self, e):
try:
device = get_phone(True)
if not device:
return
if not device.rooted:
return
print("Add Systemless Hosts")
self._on_spin('start')
device.magisk_add_systemless_hosts()
self.refresh_modules()
except Exception as e:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Exception in function onSystemlessHosts")
traceback.print_exc()
finally:
self._on_spin('stop')
# -----------------------------------------------
# onInstallPif
# -----------------------------------------------
def onInstallPif(self, e):
try:
device = get_phone(True)
if not device:
return
if not device.rooted:
return
buttons_text = [_("osm0sis PlayIntegrityFork"), "TrickyStore", "Tricky Store OSS", "TEESimulator", "TEESimulator-RS", "TargetedFix", _("Cancel")]
dlg = MessageBoxEx(
parent=self,
title=_('PIF Module'),
message=_("Select the module you want to install"),
button_texts=buttons_text,
default_button=1,
disable_buttons=None,
is_md=False,
size=(800, 600),
checkbox_labels=None,
checkbox_initial_values=None,
disable_checkboxes=None,
vertical_checkboxes=False,
checkbox_labels2=None,
checkbox_initial_values2=None,
disable_checkboxes2=None,
radio_labels=None,
radio_initial_value=None,
disable_radios=None,
vertical_radios=False
)
dlg.CentreOnParent(wx.BOTH)
result = dlg.ShowModal()
dlg.Destroy()
print(f"{datetime.now():%Y-%m-%d %H:%M:%S} User Pressed {buttons_text[result -1]}")
module_update_url = None
gh_latest_url = None
if result == 1:
module_update_url = OSM0SIS_PIF_UPDATE_URL
elif result == 2:
gh_latest_url = get_gh_latest_release_asset_regex('5ec1cff', 'TrickyStore', r'^Tricky\-Store.*\-release\.zip$')
elif result == 3:
gh_latest_url = get_gh_latest_release_asset_regex('beakthoven', 'TrickyStoreOSS', r'^Tricky\-Store\-OSS.*\-Release\.zip$')
elif result == 4:
gh_latest_url = get_gh_latest_release_asset_regex('JingMatrix', 'TEESimulator', r'^TEESimulator.*\-Release\.zip$')
elif result == 5:
gh_latest_url = get_gh_latest_release_asset_regex('Enginex0', 'TEESimulator-RS', r'^TEESimulator-RS.*\-Release\.zip$')
elif result == 6:
module_update_url = TARGETEDFIX_UPDATE_URL
# gh_latest_url = get_gh_latest_release_asset_regex('VisionR1', 'TargetedFix', r'^TargetedFix.*\.zip$')
# gh_latest_url = get_gh_pre_release_asset_regex('VisionR1', 'TargetedFix', r'^TargetedFix.*\.zip$')
else:
print(f"{datetime.now():%Y-%m-%d %H:%M:%S} User Pressed Cancel.")
print("Aborting ...\n")
return -1
url = None
if gh_latest_url is not None:
url = gh_latest_url
elif module_update_url is not None:
url_obj = check_module_update(module_update_url)
if url_obj is not None:
url = url_obj.zipUrl
if url is None or url == '':
print(f"{datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Failed to get module download link.")
print("Aborting ...\n")
return -1
self._on_spin('start')
downloaded_file_path = download_file(url)
print(f"Installing Play Integrity Fix (PIF) module. URL: {downloaded_file_path} ...")
res = device.magisk_install_module(downloaded_file_path)
if res == 0:
self.outputMessage(_("## You need to reboot your device to complete the installation."))
self.refresh_modules()
except Exception as e:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Exception during Play Integrity Fix module installation.")
traceback.print_exc()
finally:
self._on_spin('stop')
# -----------------------------------------------
# onInstallZygiskNext
# -----------------------------------------------
def onInstallZygiskNext(self, e):
try:
device = get_phone(True)
if not device:
return
if not device.rooted:
return
module_update_url = ZYGISK_NEXT_UPDATE_URL
url = check_module_update(module_update_url)
if url is None:
print(f"{datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Failed to get module download link.")
print("Aborting ...\n")
return -1
self._on_spin('start')
downloaded_file_path = download_file(url.zipUrl)
print(f"Installing ZygiskNext module. URL: {downloaded_file_path} ...")
res = device.magisk_install_module(downloaded_file_path)
if res == 0:
self.outputMessage(_("## You need to reboot your device to complete the installation."))
self.refresh_modules()
except Exception as e:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Exception during ZygiskNext module installation.")
traceback.print_exc()
finally:
self._on_spin('stop')
# -----------------------------------------------
# onRunModuleAction
# -----------------------------------------------
def onRunModuleAction(self, e):
# run the action.sh script
try:
device = get_phone(True)
if not device:
return
if not device.rooted:
return
self._on_spin('start')
res = device.magisk_run_module_action(self.module.dirname if self.module else '')
except Exception as e:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Exception during Magisk modules run action.")
traceback.print_exc()
finally:
self._on_spin('stop')
# -----------------------------------------------
# onUninstallModule
# -----------------------------------------------
def onUninstallModule(self, e):
try:
device = get_phone(True)
if not device:
return
if not device.rooted:
return
id = self.list.GetItem(self.currentItem, 0).Text
name = self.list.GetItem(self.currentItem, 1).Text
if "apatch" in (self.device.su_version if self.device else '').lower():
modules = device.get_apatch_detailed_modules()
elif "kernelsu" in (self.device.su_version if self.device else '').lower():
modules = device.get_ksu_detailed_modules()
else:
modules = device.get_magisk_detailed_modules()
self._on_spin('start')
for i in range(0, self.list.ItemCount, 1):
if modules[i].dirname == id:
if modules[i].state == 'remove':
print(f"Restoring Module {name} ...")
res = device.restore_magisk_module(modules[i].dirname)
else:
print(f"Uninstalling Module {name} ...")
res = device.magisk_uninstall_module(modules[i].dirname)
if res == 0:
modules[i].state = 'remove'
self.refresh_modules()
self.outputMessage(_("## You need to reboot your device for the changes to take effect."))
else:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Failed to remove module: {modules[i].name}")
break
except Exception as e:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Exception during Magisk modules uninstall")
traceback.print_exc()
finally:
self._on_spin('stop')
# -----------------------------------------------
# onUpdateModule
# -----------------------------------------------
def onUpdateModule(self, e):
try:
device = get_phone(True)
if not device:
return
if not device.rooted:
return
id = self.list.GetItem(self.currentItem, 0).Text
name = self.list.GetItem(self.currentItem, 1).Text
print(f"Updating Module {name} ...")
if self.module and self.module.updateAvailable and self.module.updateDetails and (self.module.id and self.module.id == id) and (self.module.name and self.module.name == name):
url = self.module.updateDetails.zipUrl
self._on_spin('start')
print(f"Downloading Module: {name} URL: {url} ...")
downloaded_file_path = download_file(url)
res = device.magisk_install_module(downloaded_file_path)
if res == 0:
self.outputMessage(_("## You need to reboot your device to complete the update."))
self.refresh_modules()
except Exception as e:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Exception during modules update")
traceback.print_exc()
finally:
self._on_spin('stop')
# -----------------------------------------------
# onInstallModule
# -----------------------------------------------
def onInstallModule(self, e):
device = get_phone(True)
if not device:
return
if not device.rooted:
return
print(f"{datetime.now():%Y-%m-%d %H:%M:%S} User Pressed Install Module.")
with wx.FileDialog(self, "_(select Module file to install)", '', '', wildcard="Magisk Modules (*.*.zip)|*.zip", style=wx.FD_OPEN) as fileDialog:
if fileDialog.ShowModal() == wx.ID_CANCEL:
print("User cancelled module install.")
return
# save the current contents in the file
pathname = fileDialog.GetPath()
print(f"\nSelected {pathname} for installation.")
try:
self._on_spin('start')
res = device.magisk_install_module(pathname)
if res == 0:
self.outputMessage(_("## You need to reboot your device to complete the installation."))
self.refresh_modules()
except IOError:
wx.LogError(f"Cannot install module file '{pathname}'.")
traceback.print_exc()
finally:
self._on_spin('stop')
# -----------------------------------------------
# onContextMenu
# -----------------------------------------------
def onContextMenu(self, event):
menu = wx.Menu()
copy_item = menu.Append(wx.ID_COPY, _("Copy"))
select_all_item = menu.Append(wx.ID_SELECTALL, _("Select All"))
self.Bind(wx.EVT_MENU, self.onCopy, copy_item)
self.Bind(wx.EVT_MENU, self.onSelectAll, select_all_item)
self.PopupMenu(menu)
menu.Destroy()
# -----------------------------------------------
# onCopy
# -----------------------------------------------
def onCopy(self, event):
self.html.CopySelectedText()
# -----------------------------------------------
# onSelectAll
# -----------------------------------------------
def onSelectAll(self, event):
self.html.SelectAll()
# -----------------------------------------------
# onOk
# -----------------------------------------------
def onOk(self, e):
device = get_phone(True)
if not device:
self.EndModal(wx.ID_OK)
return
if not device.rooted:
self.EndModal(wx.ID_OK)
print(f"{datetime.now():%Y-%m-%d %H:%M:%S} User Pressed Ok.")
if "apatch" in (self.device.su_version if self.device else '').lower():
modules = device.get_apatch_detailed_modules()
elif "kernelsu" in (self.device.su_version if self.device else '').lower():
modules = device.get_ksu_detailed_modules()
else:
modules = device.get_magisk_detailed_modules()
for i in range(0, self.list.ItemCount, 1):
if modules[i].state == 'enabled':
module_state = True
else:
module_state = False
list_state = self.list.IsItemChecked(i)
if list_state == module_state:
print(f"Module: {modules[i].name:<36} state has not changed, Nothing to do. [Kept {modules[i].state.upper()}]")
elif list_state:
print(f"Module: {modules[i].name:<36} state has changed, ENABLING the module ...")
res = device.enable_magisk_module(modules[i].dirname)
if res == 0:
modules[i].state = 'enabled'
else:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Failed to disable module: {modules[i].name}")
else:
print(f"Module: {modules[i].name:<36} state has changed, DISABLING the module ...")
res = device.disable_magisk_module(modules[i].dirname)
if res == 0:
modules[i].state = 'disabled'
else:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Failed to disable module: {modules[i].name}")
print('')
self.EndModal(wx.ID_OK)
# -----------------------------------------------
# _on_spin
# -----------------------------------------------
def _on_spin(self, state):
wx.YieldIfNeeded()
if state == 'start':
self.SetCursor(wx.Cursor(wx.CURSOR_WAIT))
self.Parent._on_spin('start')
else:
self.SetCursor(wx.Cursor(wx.CURSOR_ARROW))
self.Parent._on_spin('stop')
# ----------------------------------------------------------------------------
# refresh_modules
# ----------------------------------------------------------------------------
def refresh_modules(self):
# self.Freeze()
self.list.ClearAll()
self.PopulateList(True)
# self.Thaw
# -----------------------------------------------
# OnResize
# -----------------------------------------------
def OnResize(self, event):
self.resizing = True
self.Parent.config.magisk_width = self.Rect.Width
self.Parent.config.magisk_height = self.Rect.Height
self.Layout()
event.Skip(True)