{"id":44394036,"url":"https://github.com/KernelSU-Next/KPatch-Next","last_synced_at":"2026-02-24T08:01:09.579Z","repository":{"id":331971891,"uuid":"1124956336","full_name":"KernelSU-Next/KPatch-Next","owner":"KernelSU-Next","description":"Standalone implementation of KPM support for Magisk/KernelSU","archived":false,"fork":false,"pushed_at":"2026-02-04T16:49:40.000Z","size":2810,"stargazers_count":67,"open_issues_count":6,"forks_count":8,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-02-05T04:06:47.271Z","etag":null,"topics":["android","kernel-patch","kpatch-next","kpm","ksu","linux","magisk","module"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KernelSU-Next.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-29T23:02:41.000Z","updated_at":"2026-02-04T16:51:18.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/KernelSU-Next/KPatch-Next","commit_stats":null,"previous_names":["kernelsu-next/kpatch-next"],"tags_count":46,"template":false,"template_full_name":null,"purl":"pkg:github/KernelSU-Next/KPatch-Next","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KernelSU-Next%2FKPatch-Next","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KernelSU-Next%2FKPatch-Next/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KernelSU-Next%2FKPatch-Next/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KernelSU-Next%2FKPatch-Next/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KernelSU-Next","download_url":"https://codeload.github.com/KernelSU-Next/KPatch-Next/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KernelSU-Next%2FKPatch-Next/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29775768,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T04:54:30.205Z","status":"ssl_error","status_checked_at":"2026-02-24T04:53:58.628Z","response_time":75,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","kernel-patch","kpatch-next","kpm","ksu","linux","magisk","module"],"created_at":"2026-02-12T03:00:26.080Z","updated_at":"2026-02-24T08:01:09.568Z","avatar_url":"https://github.com/KernelSU-Next.png","language":"C","funding_links":[],"categories":["C"],"sub_categories":[],"readme":"# KPatch-Next\n\n**Patching and hooking the Linux kernel with only stripped Linux kernel image.**\n\n``` shell\n _  ______       _       _           _   _           _   \n| |/ /  _ \\ __ _| |_ ___| |__       | \\ | | _____  _| |_ \n| ' /| |_) / _` | __/ __| '_ \\ _____|  \\| |/ _ \\ \\/ / __|\n| . \\|  __/ (_| | || (__| | | |_____| |\\  |  __/\u003e  \u003c| |_ \n|_|\\_\\_|   \\__,_|\\__\\___|_| |_|     |_| \\_|\\___/_/\\_\\\\__|\n\n```\n\n- Obtain all symbol information without source code and symbol information.\n- Inject arbitrary code into the kernel. (Static patching the kernel image or Runtime dynamic loading).\n- Kernel function inline hook and syscall table hook are provided.\n- Pure KPM module support for all root managers i.e Magisk \u0026 KernelSU/N (Except APatch).\n- Checkout our magisk/kernelsu module! [KPatch-Next-Module](https://github.com/KernelSU-Next/KPatch-Next-Module)\n\n## Requirement\n\nCONFIG_KALLSYMS=y\nCONFIG_KALLSYMS_ALL=y\n\nor\n\nCONFIG_KALLSYMS=y\nCONFIG_KALLSYMS_ALL=n (Initial support)\n\nor\n\nCONFIG_KALLSYMS=y\n\n## Supported Versions\n\nCurrently only supports arm64 architecture.  \n\nLinux 3.18 - 6.12 (theoretically)  \n\n## Get Involved\n\n## More Information\n\n[Documentation](./doc/)\n\n## Credits\n\n- [KernelPatch](https://github.com/bmax121/KernelPatch): Special thanks to the author for making this project possible.\n- [vmlinux-to-elf](https://github.com/marin-m/vmlinux-to-elf): Some ideas for parsing kernel symbols.\n- [android-inline-hook](https://github.com/bytedance/android-inline-hook): Some code for fixing arm64 inline hook instructions.\n- [tlsf](https://github.com/mattconte/tlsf): Memory allocator used for KPM. (Need another to allocate ROX memory.)\n\n## License\n\nKPatch-Next is licensed under the **GNU General Public License (GPL) 2.0** (\u003chttps://www.gnu.org/licenses/old-licenses/gpl-2.0.html\u003e).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKernelSU-Next%2FKPatch-Next","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FKernelSU-Next%2FKPatch-Next","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKernelSU-Next%2FKPatch-Next/lists"}