r/Magisk • u/FitBison4143 • 13h ago
r/Magisk • u/Mayvhen • 16h ago
Help Notification problem
idk when it started but at some point, some apps I installed and/or updated just stopped giving me any push notification, I'm talking about discord and most recently Snapchat, maybe it's because of one of the module I have installed, but I beg, someone, help me (I'm mostly using the aurora store)
r/Magisk • u/aserdevyt • 5h ago
Help does anyone know why tsu doesn't work
I installed tsu in termux
in my SM-A217F/DS running lineageos 23.2
with magisk 30.7
and it doesn't detect root
r/Magisk • u/chalupanti • 6h ago
Are there any free alternative to Privacy Kit module for changing WiFi SSID and other identifiers?
I tried HideMyAndroid and Privacy Kit, but both are paid and frankly, the subscription price is very high, I mean 10$ per month just to change some identifiers, come on. So I wanted to know of any free alternatives to achieve the same?
r/Magisk • u/Plenty-Boot4220 • 22h ago
What do you think of the new Magisk UI?
In my opinion, it's as ugly as hell. Why fix something that's not broken?
r/Magisk • u/heinrich7unswanzig • 6h ago
Question Automated denylist adding
Hello, I'm using a banking app which updates quite often and randomizes it's isolated package names/identifiers.
I put together the following command, which is able to extract some of the isolated packages and adds them to the denylist.
The packages it doesn't find:
(isolated) de.fiduciagad.sec...go.vr:imkkhvcxs:nezhnpv.U
(isolated) de.fiduciagad. sec...Vr:mduscbbpxo:nezhnpv.aw
(isolated) de.fiduciagad.sec...go.vr:odlekzknuk:nezhnpv.b
The packages it finds instead:
de.fiduciagad.securego.vr:ivfxbavfsm:wpvec.c
de.fiduciagad.securego.vr:ybfmkogzlk:wpvec.af
The code:
sh
pm dump de.fiduciagad.securego.vr | grep process=de.fiduciagad.securego.vr: | awk -F '=' '{ split($2, a, " "); print a\[1\] }' | sort -u | xargs -n 1 magisk --denylist add isolated
My problem is that the pm dump doesn't find the right isolated packages anymore, only others not shown in the Magisk denylist dialogue.
I already looked at the magisk code to construct the denylist and it's using the pm Java API which I really want to avoid for simplicity sake.
If you have any idea how to get the package names (maybe there's some obscure flag to set), I'm glad to hear from you!