777
مشترکین
+124 ساعت
+207 روز
+8530 روز
در حال بارگیری داده...
کانالهای مشابه
هیچ دادهای
مشکلی وجود دارد؟ لطفاً صفحه را تازه کنید یا با مدیر پشتیبانی ما تماس بگیرید.
ابر برچسبها
اشارات ورودی و خروجی
---
---
---
---
---
---
جذب مشترکین
ژوئیه '26
ژوئیه '26
+101
در 1 کانالها
ژوئن '26
+279
در 3 کانالها
Get PRO
مه '26
+175
در 0 کانالها
Get PRO
آوریل '26
+257
در 5 کانالها
| تاریخ | رشد مشترکین | اشارات | کانالها | |
| 31 ژوئیه | +3 | |||
| 30 ژوئیه | +2 | |||
| 29 ژوئیه | +5 | |||
| 28 ژوئیه | +4 | |||
| 27 ژوئیه | +4 | |||
| 26 ژوئیه | +1 | |||
| 25 ژوئیه | +5 | |||
| 24 ژوئیه | +3 | |||
| 23 ژوئیه | +3 | |||
| 22 ژوئیه | +4 | |||
| 21 ژوئیه | +2 | |||
| 20 ژوئیه | 0 | |||
| 19 ژوئیه | 0 | |||
| 18 ژوئیه | +3 | |||
| 17 ژوئیه | 0 | |||
| 16 ژوئیه | +1 | |||
| 15 ژوئیه | +2 | |||
| 14 ژوئیه | +3 | |||
| 13 ژوئیه | +5 | |||
| 12 ژوئیه | +3 | |||
| 11 ژوئیه | +7 | |||
| 10 ژوئیه | +4 | |||
| 09 ژوئیه | +1 | |||
| 08 ژوئیه | +4 | |||
| 07 ژوئیه | +4 | |||
| 06 ژوئیه | +4 | |||
| 05 ژوئیه | +1 | |||
| 04 ژوئیه | +5 | |||
| 03 ژوئیه | +5 | |||
| 02 ژوئیه | +10 | |||
| 01 ژوئیه | +3 |
پستهای کانال
| 2 | - Updated New Icon | 1 |
| 3 | Screenshot from a user 🦀 | 1 170 |
| 4 | NyaZygisk
Author: NkBe
Branch: master
Run: #ci_100
zygisk: abort direct zygote unmount when resource overlays are present
Detaching the zygote from the mount namespace while a **font** or
**/product** resource overlay is still mounted leaves the framework
without those assets during early boot, leading to crashes on some
devices. Detect such mounts in the trace list and fall back to the
per-process setns path so the overlay remains visible until each app
is specialized.
While touching the code:
* Swap the verbose `traces.size() == 0` test for the clearer
`traces.empty()`.
* Add `<algorithm>` and `<string_view>` to satisfy the new
`std::any_of` and `std::string_view` uses explicitly, instead of
relying on transitive includes.
* Remove the now-redundant `saniti...
Commit
Workflow run | 2 250 |
| 5 | NyaZygisk
Author: NkBe
Branch: master
Run: #ci_99
Add banner image URL for KSUN module display
Commit
Workflow run | 2 029 |
| 6 | That's all for today's update~
Give the channel some reposts, please qwq | 1 861 |
| 7 | NyaZygisk
Author: NkBe
Branch: master
Run: #ci_98
Refactor font workaround into fd-aware zygote detach
Refactor the path-based workaround from 13879f572beaaf702f718afa4c9dfe23443f31f8 into fd-aware handling. Wire fds_to_close through AppSpecializeArgs, detect inherited zygote fds whose backing paths disappear after direct unmount, and mark them for detach before ReopenOrDetach. Also remove the product/font target denylist so direct zygote unmount no longer depends on brittle mount path heuristics.
Commit
Workflow run | 1 782 |
| 8 | NyaZygisk
Author: NkBe
Branch: master
Run: #ci_97
Harden anonymous memory remapping and shared cache ordering
Anonymous module mappings were moved while backup pages were still write-only, leaving executable segments temporarily non-executable until mprotect restored their permissions. The toggle was also read after specialization, when app-domain path access could prevent config.prop from being opened.
Apply final permissions before MREMAP_FIXED and capture the toggle before specialization. Strengthen the cross-process flag cache by pairing the reader validation fence with a writer-side release fence, avoiding exclusive Rust references to shared storage, and asserting the C++/Rust atomic layout assumptions at compile time.
Commit
Workflow run | 1 427 |
| 9 | NyaZygisk
Author: NkBe
Branch: master
Run: #ci_96
Fix Telegram upload caption formatting
Added display of the main author
Commit
Workflow run | 1 |
| 10 | httpAlso includes the following changes
Support BTI enabled devices
During the entry point hijack phase on ARMv9 hardware with Branch Target Identification (BTI) enabled, dispatching remote calls to bionic functions (such as `dlopen`) resulted in an immediate Branch Target Exception (SIGILL).
This crash is caused by a stale Branch Type (`BTYPE`) state. When the Android dynamic linker transfers control to the target's `AT_ENTRY`, it uses an indirect branch instruction (`BR`). This hardware action updates the CPU's `PSTATE` register, setting the `BTYPE` field to `0b11` (Indirect Jump).
When the tracer pauses the process and redirects execution to `dlopen`, the CPU inherits this `PSTATE`. Modern Android bionic libraries are compiled with BTI and start with `PACIASP` or `BTI c` landing pads. These landing pads strictly require the incoming `BTYPE` to be `0b01` (Direct Call) or `0b10` (Indirect Call). Confronted with `0b11`, the CPU assumes a JOP (Jump-Oriented Programming) exploit and raises a SIGILL.
This commit resolves the issue by clearing the `BTYPE` field (bits 10 and 11) in the `pstate` register structure prior to initiating any remote calls. Resetting the field to `0b00` prevents the hardware from enforcing BTI validation on the immediate next instruction. The original `PSTATE` is preserved in the register backup, ensuring that the target executable can securely
validate its own BTI landing pad when execution is fully restored.
References: https://developer.android.com/ndk/guides/abis#armv9_enabling_pac_and_bti_for_cc
Commit | 995 |
| 11 | Also includes the following changes
Support BTI enabled devices
During the entry point hijack phase on ARMv9 hardware with Branch Target Identification (BTI) enabled, dispatching remote calls to bionic functions (such as `dlopen`) resulted in an immediate Branch Target Exception (SIGILL).
This crash is caused by a stale Branch Type (`BTYPE`) state. When the Android dynamic linker transfers control to the target's `AT_ENTRY`, it uses an indirect branch instruction (`BR`). This hardware action updates the CPU's `PSTATE` register, setting the `BTYPE` field to `0b11` (Indirect Jump).
When the tracer pauses the process and redirects execution to `dlopen`, the CPU inherits this `PSTATE`. Modern Android bionic libraries are compiled with BTI and start with `PACIASP` or `BTI c` landing pads. These landing pads strictly require the incoming `BTYPE` to be `0b01` (Direct Call) or `0b10` (Indirect Call). Confronted with `0b11`, the CPU assumes a JOP (Jump-Oriented Programming) exploit and raises a SIGILL.
This commit resolves the issue by clearing the `BTYPE` field (bits 10 and 11) in the `pstate` register structure prior to initiating any remote calls. Resetting the field to `0b00` prevents the hardware from enforcing BTI validation on the immediate next instruction. The original `PSTATE` is preserved in the register backup, ensuring that the target executable can securely
validate its own BTI landing pad when execution is fully restored.
References: https://developer.android.com/ndk/guides/abis#armv9_enabling_pac_and_bti_for_cc
Commit | 2 |
| 12 | NyaZygisk
Branch: master
Run: #ci_95
Avoid leaking env TMP_PATH to app processes
NeoZygisk used TMP_PATH both as internal loader state and as inherited process environment for zygiskd startup. That exposed a stable TMP_PATH marker inside injected zygote and app processes while also tying daemon bootstrap to inherited environment state.
This change keeps TMP_PATH as internal loader state, removes TMP_PATH export from injected processes, and lets zygiskd take an explicit --workdir argument when the internal launcher needs to pass the daemon work directory without relying on environment inheritance. The default daemon entry path remains compatible, while internal socket and workdir resolution continue to use GetTmpPath().
Co-authored-by: JingMatrix <jingmatrix@gmail.com>
Commit
Workflow run | 992 |
| 13 | NyaZygisk
Branch: master
Run: #ci_94
Fix Telegram upload caption formatting
Commit
Workflow run | 37 |
| 14 | https://github.com/HSSkyBoy/NyaZygisk/commit/9b42c7ba5c8459e9de253c9132db0a12b67214de | 1 046 |
| 15 | NyaZygisk
Branch: master
#ci_92
Add WebUI root implementation detection
Commit
Workflow run | 18 437 |
| 16 | NyaZygisk
Branch: master
Run: #ci_91
Commit: 583cc32
Author: NkBe <nikobe918@outlook.com>
Artifact: NyaZygisk-v2.3-305-583cc32-release.zip
Commit message:
Add anonymous memory toggle
Commit: https://github.com/HSSkyBoy/NyaZygisk/commit/583cc32cd606c9e4807330106609a943960ef636
Workflow run: https://github.com/HSSkyBoy/NyaZygisk/actions/runs/27216684347 | 1 897 |
| 17 | https://github.com/HSSkyBoy/NyaZygisk/commit/79b4031cf7093d250ed1d5a96f591b7069b1a5b4 | 1 785 |
| 18 | Wow, it's been so long since I updated. Should we create a community discussion group🥳 | 1 762 |
| 19 | NyaZygisk
Branch: master
#ci_88
refactor(injector): enhance atexit array recompaction and sanity checks
This update refactors the atexit array's recompaction and sanity validation logic to improve fault tolerance. By encapsulating state checks into isSane() and intercepting mprotect failures via boolean returns, the recompaction process is now treated as a best-effort operation, gracefully preventing potential segfaults caused by Android 16's strict memory page protections.
Commit
Workflow run | 1 843 |
| 20 | بدون متن... | 30 |
