Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[New Tool] add ios-app-signer (by @appknox) #2612

Merged
merged 6 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tools/ios/MASTG-TOOL-0101.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: codesign
platform: ios
source: https://www.unix.com/man-page/osx/1/codesign/
alternatives: [MASTG-TOOL-0102]
---

The codesign tool is primarily used to create, verify, and display code signatures, and to query the dynamic status of signed code in the system. Although Xcode typically automates the process of signing code during builds and before distribution, there are scenarios where manual intervention with codesign is required. This can include inspecting or verifying the details of an app's code signature, or manually re-signing an app. For more detailed tasks such as these, you can use the codesign command line tool directly, as described in Apple's Code Signing Guide.
Expand Down
14 changes: 14 additions & 0 deletions tools/ios/MASTG-TOOL-0102.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: ios-app-signer
platform: ios
source: https://github.com/DanTheMan827/ios-app-signer
---

[ios-app-signer](https://github.com/DanTheMan827/ios-app-signer) is a GUI-based tool for macOS that allows you to re-sign iOS apps and bundle them into IPA files ready to be installed on an iOS device. It can be installed using the `.app` file from the [GitHub releases](https://github.com/DanTheMan827/ios-app-signer/releases) or via brew on macOS:
cpholguera marked this conversation as resolved.
Show resolved Hide resolved

```
brew install --cask ios-app-signer
```

For more information about installation and use, see their [website](https://dantheman827.github.io/ios-app-signer/).
cpholguera marked this conversation as resolved.
Show resolved Hide resolved