A fork of JingMatrix's LSPosed/Vector, aiming to make GKMSPatch work
Go to file
JingMatrix bb869eac2d Fix implementation of UnhookPLT
Currently, inline_unhooker is not used in the code.
We still fix the logic to avoid confusion.

There is no feasible way to determinate if the parameter original is a
valid function pointer or a `const char` pointer.
We suppose it as a char pointer in the first step.
2024-09-23 15:58:40 +02:00
.github Remove Riru support 2024-09-23 11:10:25 +02:00
apache Add commons-lang as a subproject 2024-09-22 14:25:45 +02:00
app Avoid navigating to app list before loaded 2024-09-22 14:25:45 +02:00
axml Replace axml by WindySha/ManifestEditor 2024-05-18 23:48:50 +02:00
core Remove LSPlt submodule 2024-09-23 11:10:37 +02:00
daemon Remove Riru support 2024-09-23 11:10:25 +02:00
dex2oat Add missing LD_LIBRARY_PATH env (#34) 2024-09-22 14:25:45 +02:00
external Remove LSPlt submodule 2024-09-23 11:10:37 +02:00
gradle Update dependencies 2024-09-22 14:25:45 +02:00
hiddenapi Fix `IContentProvider` for Android P and below (#2735) 2023-09-01 21:54:50 +08:00
magisk-loader Fix implementation of UnhookPLT 2024-09-23 15:58:40 +02:00
services Allow to de-activate log watchlog (#20) 2024-09-22 14:25:40 +02:00
.gitattributes Ndk build (#753) 2021-06-20 11:46:38 +08:00
.gitignore Turn on EXPORT_COMPILE_COMMANDS 2024-07-24 01:23:05 +02:00
.gitmodules Remove LSPlt submodule 2024-09-23 11:10:37 +02:00
LICENSE [README] Fix license 2021-02-13 17:28:01 +08:00
README.md Remove LSPlt submodule 2024-09-23 11:10:37 +02:00
build.gradle.kts Update dependencies (#16) 2024-09-12 11:31:07 +02:00
crowdin.yml [skip ci] Config crowdin 2024-07-24 10:27:25 +02:00
gradle.properties Adjust proguard for Android R8 2024-05-18 23:48:43 +02:00
gradlew Update dependencies (#16) 2024-09-12 11:31:07 +02:00
gradlew.bat Update dependencies (#16) 2024-09-12 11:31:07 +02:00
settings.gradle.kts Add commons-lang as a subproject 2024-09-22 14:25:45 +02:00

README.md

LSPosed Framework

Build Crowdin Download Total

Introduction

A Zygisk module trying to provide an ART hooking framework which delivers consistent APIs with the OG Xposed, leveraging LSPlant hooking framework.

Xposed is a framework for modules that can change the behavior of the system and apps without touching any APKs. That's great because it means that modules can work for different versions and even ROMs without any changes (as long as the original code was not changed too much). It's also easy to undo. As all changes are done in the memory, you just need to deactivate the module and reboot to get your original system back. There are many other advantages, but here is just one more: multiple modules can do changes to the same part of the system or app. With modified APKs, you have to choose one. No way to combine them, unless the author builds multiple APKs with different combinations.

Supported Versions

Android 8.1 ~ 15 Beta 4

Install

  1. Install Magisk v26+
  2. Download and install LSPosed in Magisk app
  3. Reboot
  4. Open LSPosed manager from notification
  5. Have fun :)

Download

Note: debug builds are only available in Github Actions.

Get Help

Only bug reports from THE LATEST DEBUG BUILD will be accepted.

  • GitHub issues: Issues
  • (For Chinese speakers) 本项目只接受英语标题的issue。如果您不懂英语请使用翻译工具

For Developers

Developers are welcome to write Xposed modules with hooks based on LSPosed Framework. A module based on LSPosed framework is fully compatible with the original Xposed Framework, and vice versa, a Xposed Framework-based module will work well with LSPosed framework too.

We use our own module repository. We welcome developers to submit modules to our repository, and then modules can be downloaded in LSPosed.

Community Discussion

Notice: These community groups don't accept any bug report, please use Get help to report.

Translation Contributing

You can contribute translation here.

Credits

  • Magisk: makes all these possible
  • XposedBridge: the OG Xposed framework APIs
  • Dobby: fallback of PLT hook and inline hooker for native_api implement
  • LSPlant: the core ART hooking framework
  • EdXposed: fork source
  • xz-embedded: decompress .gnu_debugdata header section of stripped libart.so
  • Riru: provides a way to inject code into zygote process
  • ~SandHook: ART hooking framework for SandHook variant~
  • ~YAHFA: previous ART hooking framework~
  • ~dexmaker and dalvikdx: to dynamically generate YAHFA hooker classes~
  • ~DexBuilder: to dynamically generate YAHFA hooker classes~

License

LSPosed is licensed under the GNU General Public License v3 (GPL-3) (http://www.gnu.org/copyleft/gpl.html).