├── README.md └── Screenshot ├── Screenshot1.jpeg ├── Screenshot10.jpeg ├── Screenshot11.jpeg ├── Screenshot2.jpeg ├── Screenshot3.jpeg ├── Screenshot4.jpeg ├── Screenshot5.jpeg ├── Screenshot6.jpeg ├── Screenshot7.jpeg ├── Screenshot8.jpeg ├── Screenshot9.jpeg └── app.plist /README.md: -------------------------------------------------------------------------------- 1 | 2 | # ABox_iOS 3 | 4 | ABox是一款免费的免越狱IPA签名的工具,适用于iOS12+系统,具有IPA导入下载安装、修复白图标、移除系统版本限制、应用多开等功能。 5 | 6 | ![](https://img.shields.io/badge/platform-iOS12+-orange.svg) 7 | 8 | ## 功能 9 | * 签名、解压、打包IPA文件 10 | * 查看p12证书和mobileprovision的信息 11 | * 修改、注入、删除MachO的依赖项(动态库) 12 | * 支持classdump导出MachO文件中的.h头文件 13 | * 解压、压缩Zip 14 | * 解析网页中的ipa安装地址,并支持下载ipa 15 | 16 | ## 使用说明 17 | * 需自行导入ipa、证书、描述文件才可以签名 18 | * [使用教程](https://swing1993.cn/aboxshi-yong-jiao-cheng/) 19 | * [ipa下载地址](https://github.com/SWING1993/ABox_iOS/releases) 20 | 21 | 22 | ## 使用的开源框架 23 | 1. [zsign](https://github.com/zhlynn/zsign) 24 | 2. [AltSign](https://github.com/rileytestut/AltSign) 25 | 3. [RxSwift](https://github.com/ReactiveX/RxSwift) 26 | 4. [SnapKit](https://github.com/SnapKit/SnapKit) 27 | 5. [Alamofire](https://github.com/Alamofire/Alamofire) 28 | 6. [OpenSSL](https://github.com/openssl/openssl) 29 | 7. [minizip-ng](https://github.com/zlib-ng/minizip-ng) 30 | 8. [GCDWebServer](https://github.com/swisspol/GCDWebServer) 31 | 9. [ldid](https://github.com/rileytestut/ldid) 32 | 10. CoreCrypto 33 | 11. [optool](https://github.com/alexzielenski/optool) 34 | 12. [class-dump](https://github.com/nygard/class-dump) 35 | 36 | ## 项目预览 37 | ![](http://qiniu.swing1993.cn/image/ABox_Screenshot.png) 38 | 39 | -------------------------------------------------------------------------------- /Screenshot/Screenshot1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWING1993/ABox_iOS/cc6821761a9b92ea163fe060e4152dde88021fbe/Screenshot/Screenshot1.jpeg -------------------------------------------------------------------------------- /Screenshot/Screenshot10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWING1993/ABox_iOS/cc6821761a9b92ea163fe060e4152dde88021fbe/Screenshot/Screenshot10.jpeg -------------------------------------------------------------------------------- /Screenshot/Screenshot11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWING1993/ABox_iOS/cc6821761a9b92ea163fe060e4152dde88021fbe/Screenshot/Screenshot11.jpeg -------------------------------------------------------------------------------- /Screenshot/Screenshot2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWING1993/ABox_iOS/cc6821761a9b92ea163fe060e4152dde88021fbe/Screenshot/Screenshot2.jpeg -------------------------------------------------------------------------------- /Screenshot/Screenshot3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWING1993/ABox_iOS/cc6821761a9b92ea163fe060e4152dde88021fbe/Screenshot/Screenshot3.jpeg -------------------------------------------------------------------------------- /Screenshot/Screenshot4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWING1993/ABox_iOS/cc6821761a9b92ea163fe060e4152dde88021fbe/Screenshot/Screenshot4.jpeg -------------------------------------------------------------------------------- /Screenshot/Screenshot5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWING1993/ABox_iOS/cc6821761a9b92ea163fe060e4152dde88021fbe/Screenshot/Screenshot5.jpeg -------------------------------------------------------------------------------- /Screenshot/Screenshot6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWING1993/ABox_iOS/cc6821761a9b92ea163fe060e4152dde88021fbe/Screenshot/Screenshot6.jpeg -------------------------------------------------------------------------------- /Screenshot/Screenshot7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWING1993/ABox_iOS/cc6821761a9b92ea163fe060e4152dde88021fbe/Screenshot/Screenshot7.jpeg -------------------------------------------------------------------------------- /Screenshot/Screenshot8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWING1993/ABox_iOS/cc6821761a9b92ea163fe060e4152dde88021fbe/Screenshot/Screenshot8.jpeg -------------------------------------------------------------------------------- /Screenshot/Screenshot9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWING1993/ABox_iOS/cc6821761a9b92ea163fe060e4152dde88021fbe/Screenshot/Screenshot9.jpeg -------------------------------------------------------------------------------- /Screenshot/app.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | items 6 | 7 | 8 | assets 9 | 10 | 11 | kind 12 | software-package 13 | url 14 | http://127.0.0.1:8881/app.ipa 15 | 16 | 17 | kind 18 | display-image 19 | url 20 | http://127.0.0.1:8881/applogo.png 21 | 22 | 23 | kind 24 | full-size-image 25 | url 26 | http://127.0.0.1:8881/applogo.png 27 | 28 | 29 | metadata 30 | 31 | bundle-identifier 32 | com.abox.installApp 33 | bundle-version 34 | 1.0 35 | kind 36 | software 37 | title 38 | App 39 | 40 | 41 | 42 | 43 | 44 | --------------------------------------------------------------------------------