├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.assets ├── 20221109212126575.png └── 2024-02-19_01.27.27.png ├── README.en.md ├── README.md ├── README.tr.md ├── changelog.md ├── customize.sh ├── module.prop ├── post-fs-data.sh ├── service.sh ├── system.prop └── update.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | - Device: [ Xiaomi12Pro , Pixel6... ] 11 | - OS version: [ 12 , 14 ] 12 | - env: [ magisk , kernelsu , apatch ] 13 | - installed module: [ Zygisk - LSPosed V1.9.2 , Zygisk Next v1.0.3 ] 14 | 15 | **Additional context** 16 | Add any other context about the problem here. 17 | Extract `/data/adb/modules/MoveCertificate/install.log`, Upload Module Execution Log 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | .DS_Store 3 | webdev 4 | webroot 5 | .idea 6 | node_modules 7 | package-lock.json 8 | .cache 9 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | docs(docs): :memo: Add a code of conduct Add a code of conduct to your project. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- 1 | #!/sbin/sh 2 | 3 | ################# 4 | # Initialization 5 | ################# 6 | 7 | umask 022 8 | 9 | # echo before loading util_functions 10 | ui_print() { echo "$1"; } 11 | 12 | require_new_magisk() { 13 | ui_print "*******************************" 14 | ui_print " Please install Magisk v20.4+! " 15 | ui_print "*******************************" 16 | exit 1 17 | } 18 | 19 | ######################### 20 | # Load util_functions.sh 21 | ######################### 22 | 23 | OUTFD=$2 24 | ZIPFILE=$3 25 | 26 | mount /data 2>/dev/null 27 | 28 | [ -f /data/adb/magisk/util_functions.sh ] || require_new_magisk 29 | . /data/adb/magisk/util_functions.sh 30 | [ $MAGISK_VER_CODE -lt 20400 ] && require_new_magisk 31 | 32 | install_module 33 | exit 0 -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.assets/20221109212126575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ys1231/MoveCertificate/5981f417de4101565afac6a78f18bbc37d1a8879/README.assets/20221109212126575.png -------------------------------------------------------------------------------- /README.assets/2024-02-19_01.27.27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ys1231/MoveCertificate/5981f417de4101565afac6a78f18bbc37d1a8879/README.assets/2024-02-19_01.27.27.png -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- 1 | # [Move Certificate](https://github.com/ys1231/MoveCertificate) 2 | 3 | [中文](README.md) | [Türkçe](README.tr.md) 4 | 5 | A `Magisk/KernelSU/APatch` module for moving user certificates to system certificates. Supports `Android 7-15`. 6 | If your phone has an official image, you might need this module. If you compile your own ROM, you can either build it in or manually move it using `remount`. 7 | 8 | # Usage 9 | 10 | 1. After exporting the certificate, simply `push` it to your phone and install it normally through system settings, then restart. No format conversion needed. 11 | 2. Can be used with [appproxy](https://github.com/ys1231/appproxy) VPN proxy tool. 12 | 13 | ## Manual Certificate Installation to System Certificate Directory 14 | 15 | - **This method will overwrite existing certificates, designed for multiple computers and built-in certificates** 16 | - Normally, this scenario is not needed. 17 | 18 | 0. If the certificate has been moved before or built into the source code, you'll find that direct installation through the system doesn't actually install the certificate. This scenario needs to be preserved. 19 | 20 | 1. Export the packet capture software certificate and convert it to pem format 21 | 2. Get the certificate hash 22 | 23 | ```shell 24 | # For pem certificates (Android system uses der, so the moved certificate needs to be converted to der) 25 | ## 1. Calculate hash 26 | ### For OpenSSL versions above 1.0 27 | openssl x509 -inform PEM -subject_hash_old -in cacert.pem 28 | ### For OpenSSL versions below 1.0 29 | openssl x509 -inform PEM -subject_hash -in cacert.pem 30 | ## 2. Convert to der 31 | openssl x509 -in cacert.pem -outform der -out cacert.der 32 | mv cacert.der 02e06844.0 33 | 34 | # For der certificates 35 | ## 1. First convert to pem to calculate hash 36 | openssl x509 -in cacert.der -inform der -outform pem -out cacert.pem 37 | openssl x509 -inform PEM -subject_hash_old -in cacert.pem 38 | ## 2. Rename certificate to hash.0 39 | mv cacert.der 02e06844.0 40 | # Or directly extract the certificate from the user directory after phone installation, no need to worry about calculation and format conversion. 41 | ``` 42 | 43 | 4. Manually rename the certificate file (before conversion) to `02e06844.0`, or coexist as `02e06844.1` 44 | 5. `adb push 02e06844.0 /data/local/tmp/cert/` 45 | 6. After pushing the certificate to the phone, restart to take effect. 46 | 47 | # Test Results 48 | ![2024-02-19_01.27.27](README.assets/2024-02-19_01.27.27.png) 49 | 50 | ## Star History 51 | 52 | [![Star History Chart](https://api.star-history.com/svg?repos=ys1231/MoveCertificate&type=Date)](https://star-history.com/#ys1231/MoveCertificate&Date) 53 | 54 | # References: 55 | - http://www.zhuoyue360.com/crack/60.html 56 | - https://topjohnwu.github.io/Magisk/guides.html#boot-scripts 57 | - https://github.com/Magisk-Modules-Repo/movecert 58 | - https://github.com/andyacer/movecert 59 | - https://book.hacktricks.xyz/v/cn/mobile-pentesting/android-app-pentesting/install-burp-certificate#android-14-zhi-hou 60 | - https://kernelsu.org/zh_CN/guide/module.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [Move Certificate](https://github.com/ys1231/MoveCertificate) 2 | 3 | [English](README.en.md) | [Türkçe](README.tr.md) 4 | 5 | 这是一个`Magisk/KernelSU/APatch`模块 用于移动用户证书到系统证书.支持`Android 7-15` 6 | 如果手机是官方镜像,可能就需要借助模块,如果是自己编译的直接内置或者`remount`手动移一下就行了. 7 | 8 | # 使用方法 9 | 10 | 1. 导出证书后直接`push`到手机,使用系统设置正常安装证书,完了重启即可,不需要格式转换. 11 | 2. 可搭配 [appproxy](https://github.com/ys1231/appproxy) vpn代理工具. 12 | 13 | ## 手动安装证书到系统证书目录 14 | 15 | - **此方法会覆盖已有的证书,专为多台电脑和内置证书准备** 16 | - 正常情况下,不需要此场景. 17 | 18 | 0. 如果证书已经移动过或者内置到源码中,会发现直接通过系统安装,实际证书并没有被安装进去,需要保留这种场景 19 | 20 | 1. 导出抓包软件证书 转换 证书为 pem 格式 21 | 2. ~~`adb shell "mkdir -p /data/local/tmp/cert"`~~ 22 | 3. 获取证书hash 23 | 24 | ```shell 25 | # pem 证书 Android 系统使用 der 所以移动后的证书格式需要转成 der 26 | ## 1. 计算 hash 27 | ### 不同openssl版本 1.0以上的 28 | openssl x509 -inform PEM -subject_hash_old -in cacert.pem 29 | ### 不同openssl版本 1.0以下的 30 | openssl x509 -inform PEM -subject_hash -in cacert.pem 31 | ## 2. 转der 32 | openssl x509 -in cacert.pem -outform der -out cacert.der 33 | mv cacert.der 02e06844.0 34 | 35 | # der 证书 36 | ## 1. 先转 pem 计算hash 37 | openssl x509 -in cacert.der -inform der -outform pem -out cacert.pem 38 | openssl x509 -inform PEM -subject_hash_old -in cacert.pem 39 | ## 2. 重命名证书为 hash值.0 40 | mv cacert.der 02e06844.0 41 | # 或者直接使用手机安装后,提取用户目录的证书出来,就不需要考虑计算和格式转换问题. 42 | ``` 43 | 44 | ![20221109212126575](README.assets/20221109212126575.png) 45 | 46 | 4. 手动修改证书(**转换前**)文件名为`02e06844.0`,或者共存`02e06844.1` 47 | 5. ~~`mkdir /data/local/tmp/cert` 这个cert目录需要自己创建~~ 48 | 6. `adb push 02e06844.0 /data/local/tmp/cert/` 49 | 7. 证书推到手机后,重启即可生效,突然发现得保留这种场景。 50 | 51 | # 使用实测 52 | ![2024-02-19_01.27.27](README.assets/2024-02-19_01.27.27.png) 53 | 54 | ## Star History 55 | 56 | [![Star History Chart](https://api.star-history.com/svg?repos=ys1231/MoveCertificate&type=Date)](https://star-history.com/#ys1231/MoveCertificate&Date) 57 | 58 | # 参考链接: 59 | - http://www.zhuoyue360.com/crack/60.html 60 | - https://topjohnwu.github.io/Magisk/guides.html#boot-scripts 61 | - https://github.com/Magisk-Modules-Repo/movecert 62 | - https://github.com/andyacer/movecert 63 | - https://book.hacktricks.xyz/v/cn/mobile-pentesting/android-app-pentesting/install-burp-certificate#android-14-zhi-hou 64 | - https://kernelsu.org/zh_CN/guide/module.html 65 | -------------------------------------------------------------------------------- /README.tr.md: -------------------------------------------------------------------------------- 1 | # [Move Certificate](https://github.com/ys1231/MoveCertificate) 2 | 3 | [English](README.en.md) | [中文](README.md) 4 | 5 | Kullanıcı sertifikalarını sistem sertifikalarına taşımak için bir `Magisk/KernelSU/APatch` modülü. `Android 7-15` destekler. 6 | Eğer telefonunuz resmi bir imaja sahipse, bu modüle ihtiyacınız olabilir. Kendi ROM'unuzu derliyorsanız, sertifikayı doğrudan içine ekleyebilir veya `remount` kullanarak manuel olarak taşıyabilirsiniz. 7 | 8 | # Kullanım 9 | 10 | 1. Sertifikayı dışa aktardıktan sonra, doğrudan telefonunuza `push` yapın ve sistem ayarları üzerinden normal şekilde yükleyin, ardından yeniden başlatın. Format dönüşümüne gerek yoktur. 11 | 2. [appproxy](https://github.com/ys1231/appproxy) VPN proxy aracı ile kullanılabilir. 12 | 13 | ## Sistem Sertifika Dizinine Manuel Sertifika Kurulumu 14 | 15 | - **Bu yöntem mevcut sertifikaların üzerine yazar, birden fazla bilgisayar ve yerleşik sertifikalar için tasarlanmıştır** 16 | - Normalde bu senaryoya ihtiyaç yoktur. 17 | 18 | 0. Eğer sertifika daha önce taşınmışsa veya kaynak koduna yerleştirilmişse, sistem üzerinden doğrudan kurulumun aslında sertifikayı kurmadığını göreceksiniz. Bu senaryo korunmalıdır. 19 | 20 | 1. Paket yakalama yazılımı sertifikasını dışa aktarın ve pem formatına dönüştürün 21 | 2. Sertifika hash'ini alın 22 | 23 | ```shell 24 | # pem sertifikaları için (Android sistemi der kullanır, bu yüzden taşınan sertifikanın der'ye dönüştürülmesi gerekir) 25 | ## 1. Hash hesapla 26 | ### OpenSSL 1.0 üstü versiyonlar için 27 | openssl x509 -inform PEM -subject_hash_old -in cacert.pem 28 | ### OpenSSL 1.0 altı versiyonlar için 29 | openssl x509 -inform PEM -subject_hash -in cacert.pem 30 | ## 2. der'ye dönüştür 31 | openssl x509 -in cacert.pem -outform der -out cacert.der 32 | mv cacert.der 02e06844.0 33 | 34 | # der sertifikaları için 35 | ## 1. Önce hash hesaplamak için pem'e dönüştür 36 | openssl x509 -in cacert.der -inform der -outform pem -out cacert.pem 37 | openssl x509 -inform PEM -subject_hash_old -in cacert.pem 38 | ## 2. Sertifikayı hash.0 olarak yeniden adlandır 39 | mv cacert.der 02e06844.0 40 | # Veya telefon kurulumundan sonra doğrudan kullanıcı dizininden sertifikayı çıkarabilirsiniz, hesaplama ve format dönüşümü endişesine gerek yok. 41 | ``` 42 | 43 | 4. Sertifika dosyasını (dönüştürmeden önce) manuel olarak `02e06844.0` olarak yeniden adlandırın veya `02e06844.1` olarak birlikte var olun 44 | 5. `adb push 02e06844.0 /data/local/tmp/cert/` 45 | 6. Sertifikayı telefona gönderdikten sonra, etkili olması için yeniden başlatın. 46 | 47 | # Test Sonuçları 48 | ![2024-02-19_01.27.27](README.assets/2024-02-19_01.27.27.png) 49 | 50 | ## Yıldız Geçmişi 51 | 52 | [![Star History Chart](https://api.star-history.com/svg?repos=ys1231/MoveCertificate&type=Date)](https://star-history.com/#ys1231/MoveCertificate&Date) 53 | 54 | # Referanslar: 55 | - http://www.zhuoyue360.com/crack/60.html 56 | - https://topjohnwu.github.io/Magisk/guides.html#boot-scripts 57 | - https://github.com/Magisk-Modules-Repo/movecert 58 | - https://github.com/andyacer/movecert 59 | - https://book.hacktricks.xyz/v/cn/mobile-pentesting/android-app-pentesting/install-burp-certificate#android-14-zhi-hou 60 | - https://kernelsu.org/zh_CN/guide/module.html -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | - chore(UI): :tada: Adapt to dark mode 2 | --- 3 | - Merge pull request #41 from SafaSafari/iyue 4 | - fix android 14 system ca 5 | --- 6 | - fix(webui): 🐛 #34 修复识别证书失败 7 | - fix(webui): 🐛 #34 Failed to repair recognition certificate 8 | --- 9 | - build(webroot): :fire: 识别证书优化 10 | - build(webroot): :fire: Recognition Certificate Optimization -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- 1 | ########################################################################################## 2 | # 3 | # Magisk Module Installer Script 4 | # 5 | ########################################################################################## 6 | 7 | # skip all default installation steps 8 | SKIPUNZIP=0 9 | 10 | # Set what you want to display when installing your module 11 | 12 | print_modname() { 13 | ui_print " " 14 | ui_print "*******************************" 15 | ui_print " Supports Android7-15 move cert" 16 | ui_print "*******************************" 17 | ui_print " " 18 | } 19 | 20 | # Copy/extract your module files into $MODDIR in on_install. 21 | 22 | on_install() { 23 | 24 | # F_TARGETDIR="$MODDIR/system/etc/security/cacerts/" 25 | D_CERTIFICATE="$MODPATH/certificates" 26 | 27 | # mkdir -p "$F_TARGETDIR" 28 | # create temp cert 29 | D_TMP_CERT=/data/local/tmp/cert 30 | 31 | if [ -f "$D_TMP_CERT" ]; then 32 | ui_print "- ${D_TMP_CERT} found" 33 | else 34 | ui_print "- create ${D_TMP_CERT}" 35 | mkdir -p -m 777 "$D_TMP_CERT" 36 | fi 37 | # ui_print "- mkdir $MODPATH/certificates" 38 | mkdir -p -m 755 "$D_CERTIFICATE" 39 | mkdir -p -m 755 /data/misc/user/0/cacerts-added 40 | } 41 | 42 | # You can add more functions to assist your custom script code 43 | print_modname 44 | on_install 45 | -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- 1 | id=MoveCertificate 2 | name=MoveCertificate 3 | version=v1.5.4 4 | versionCode=20 5 | author=Contributors 6 | description=Supports magiskv20.4+/kernelsu/APatch Android 7-15 move certificates 7 | updateJson=https://pfile.ys1231.cn/modules/MoveCertificate/update.json 8 | -------------------------------------------------------------------------------- /post-fs-data.sh: -------------------------------------------------------------------------------- 1 | #!/system/bin/sh 2 | # Do NOT assume where your module will be located. 3 | # ALWAYS use $MODDIR if you need to know where this script 4 | # and module is placed. 5 | # This will make sure your module will still work 6 | # if Magisk change its mount point in the future 7 | MODDIR=${0%/*} 8 | 9 | # This script will be executed in post-fs-data mode 10 | # Android 14 cannot be earlier than Zygote 11 | sdk_version=$(getprop ro.build.version.sdk) 12 | # debug 13 | #sdk_version=34 14 | sdk_version_number=$(expr "$sdk_version" + 0) 15 | 16 | # add logcat 17 | LOG_PATH="$MODDIR/install.log" 18 | LOG_TAG="iyue" 19 | 20 | # Keep only one up-to-date log 21 | echo "[$LOG_TAG] Keep only one up-to-date log" >$LOG_PATH 22 | 23 | print_log() { 24 | echo "[$LOG_TAG] $@" >>$LOG_PATH 25 | } 26 | 27 | move_custom_cert() { 28 | if [ "$(ls -A /data/local/tmp/cert)" ]; then 29 | cp -f /data/local/tmp/cert/* $MODDIR/certificates 30 | cp -f /data/local/tmp/cert/* /data/misc/user/0/cacerts-added/ 31 | else 32 | print_log "The directory '/data/local/tmp/cert' is empty." 33 | fi 34 | print_log "Install /data/local/tmp/cert status:$?" 35 | } 36 | 37 | fix_user_permissions() { 38 | # "Fix permissions of the system certificate directory" 39 | chown -R root:root /data/misc/user/0/cacerts-added/ 40 | chmod -R 666 /data/misc/user/0/cacerts-added/ 41 | chown system:system /data/misc/user/0/cacerts-added 42 | chmod 755 /data/misc/user/0/cacerts-added 43 | print_log "fix user certificate permissions status:$?" 44 | } 45 | 46 | fix_system_permissions() { 47 | chown root:root /system/etc/security/cacerts 48 | chown -R root:root /system/etc/security/cacerts/ 49 | chmod -R 644 /system/etc/security/cacerts/ 50 | chmod 755 /system/etc/security/cacerts 51 | chcon u:object_r:system_file:s0 /system/etc/security/cacerts/* 52 | print_log "fix permissions /system/etc/security/cacerts status:$?" 53 | } 54 | 55 | fix_system_permissions14() { 56 | chown -R system:system "$1" 57 | chown root:shell "$1" 58 | chmod -R 644 "$1" 59 | chmod 755 "$1" 60 | print_log "fix permissions: $?" 61 | } 62 | 63 | set_selinux_context(){ 64 | [ "$(getenforce)" = "Enforcing" ] || return 0 65 | default_selinux_context=u:object_r:system_file:s0 66 | selinux_context=$(ls -Zd $1 | awk '{print $1}') 67 | 68 | if [ -n "$selinux_context" ] && [ "$selinux_context" != "?" ]; then 69 | chcon -R $selinux_context $2 70 | else 71 | chcon -R $default_selinux_context $2 72 | fi 73 | } 74 | 75 | # Android version <= 13 execute 76 | if [ "$sdk_version_number" -le 33 ]; then 77 | print_log "start move cert !" 78 | print_log "current sdk version is $sdk_version_number" 79 | print_log "Backup /system/etc/security/cacerts" 80 | cp -u /system/etc/security/cacerts/* $MODDIR/certificates 81 | print_log "Backup /data/misc/user/0/cacerts-added" 82 | cp -u /data/misc/user/0/cacerts-added/* $MODDIR/certificates/ 83 | # Android 13 or lower versions perform 84 | move_custom_cert 85 | fix_user_permissions 86 | 87 | selinux_context=$(ls -Zd /system/etc/security/cacerts | awk '{print $1}') 88 | mount -t tmpfs tmpfs /system/etc/security/cacerts 89 | print_log "mount /system/etc/security/cacerts status:$?" 90 | 91 | cp -f $MODDIR/certificates/* /system/etc/security/cacerts 92 | print_log "Install /system/etc/security/cacerts status:$?" 93 | fix_system_permissions 94 | print_log "certificates installed" 95 | [ "$(getenforce)" = "Enforcing" ] || return 0 96 | default_selinux_context=u:object_r:system_file:s0 97 | if [ -n "$selinux_context" ] && [ "$selinux_context" != "?" ]; then 98 | chcon -R $selinux_context /system/etc/security/cacerts 99 | else 100 | chcon -R $default_selinux_context /system/etc/security/cacerts 101 | fi 102 | else 103 | 104 | print_log "start move cert !" 105 | print_log "current sdk version is $sdk_version_number" 106 | 107 | mount -t tmpfs tmpfs $MODDIR/certificates 108 | print_log "mount $MODDIR/certificates status:$?" 109 | print_log "Backup /apex/com.android.conscrypt/cacerts" 110 | cp -u /apex/com.android.conscrypt/cacerts/* $MODDIR/certificates 111 | print_log "Backup /data/misc/user/0/cacerts-added" 112 | cp -u /data/misc/user/0/cacerts-added/* $MODDIR/certificates 113 | move_custom_cert 114 | fix_user_permissions 115 | fix_system_permissions14 $MODDIR/certificates 116 | 117 | print_log "find system conscrypt directory" 118 | apex_dir=$(find /apex -type d -name "com.android.conscrypt@*") 119 | print_log "find conscrypt directory: $apex_dir" 120 | 121 | set_selinux_context /apex/com.android.conscrypt/cacerts $MODDIR/certificates 122 | # These two directories are mapped to the same block 123 | mount -o bind $MODDIR/certificates /apex/com.android.conscrypt/cacerts 124 | print_log "mount bind $MODDIR/certificates /apex/com.android.conscrypt/cacerts status:$?" 125 | mount -o bind $MODDIR/certificates $apex_dir/cacerts 126 | for pid in 1 $(pgrep zygote) $(pgrep zygote64); do 127 | nsenter --mount=/proc/${pid}/ns/mnt -- mount --bind $MODDIR/certificates /apex/com.android.conscrypt/cacerts 128 | done 129 | print_log "mount bind $MODDIR/certificates $apex_dir/cacerts status:$?" 130 | print_log "certificates installed" 131 | fi 132 | -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- 1 | #!/system/bin/sh 2 | # Do NOT assume where your module will be located. 3 | # ALWAYS use $MODDIR if you need to know where this script 4 | # and module is placed. 5 | # This will make sure your module will still work 6 | # if Magisk change its mount point in the future 7 | MODDIR=${0%/*} 8 | -------------------------------------------------------------------------------- /system.prop: -------------------------------------------------------------------------------- 1 | # This file will be read by resetprop 2 | # Example: Change dpi 3 | # ro.sf.lcd_density=320 4 | -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- 1 | { 2 | "versionCode": 20, 3 | "version": "v1.5.4", 4 | "zipUrl": "https://pfile.ys1231.cn/modules/MoveCertificate/MoveCertificate-v1.5.4.zip", 5 | "changelog": "https://pfile.ys1231.cn/modules/MoveCertificate/changelog.md" 6 | } --------------------------------------------------------------------------------