This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on post-fs | |
| mkdir /debug_ramdisk 0755 root root | |
| mount tmpfs tmpfs /debug_ramdisk mode=0755 | |
| on post-fs-data | |
| exec u:r:su:s0 root root -- /debug_ramdisk/magisk --stop | |
| exec u:r:su:s0 root root -- /system/bin/sh /data/adb/magisk_init.sh | |
| exec u:r:su:s0 root root -- /debug_ramdisk/magisk --post-fs-data | |
| on boot |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/zygiskd/src/utils.rs b/zygiskd/src/utils.rs | |
| index b5d9f82..4afd2af 100644 | |
| --- a/zygiskd/src/utils.rs | |
| +++ b/zygiskd/src/utils.rs | |
| @@ -172,12 +172,21 @@ pub fn unix_listener_from_path(path: &str) -> Result<UnixListener> { | |
| /// Sends a datagram packet to a Unix socket path. | |
| pub fn unix_datagram_sendto(path: &str, buf: &[u8]) -> Result<()> { | |
| - set_socket_create_context(&get_current_attr()?)?; | |
| + // Best-effort: ignore failures when SELinux is disabled or context is invalid |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| params = { | |
| "access_key" : "", | |
| "appkey" : "1d8b6e7d45233436", | |
| "build" : "8611100", | |
| "media_id" : "51732771", | |
| "mobi_app" : "android", | |
| "pn" : "1", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| service bootanim /system/bin/bootanimation | |
| class core animation | |
| user graphics | |
| group graphics audio | |
| disabled | |
| oneshot | |
| ioprio rt 0 | |
| task_profiles MaxPerformance | |
| on post-fs-data |