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 1 commit
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 GUI for macOS.With this you can re-sign iOS apps and bundle them into ipa files that are ready to be installed on an iOS device.It can be installed via brew on macOS :
sk3l10x1ng marked this conversation as resolved.
Show resolved Hide resolved
```
brew install --cask ios-app-signer
```

Alternatively:

You can install and use ios-app-signer from the releases page [instructions](https://github.com/DanTheMan827/ios-app-signer/releases).
sk3l10x1ng marked this conversation as resolved.
Show resolved Hide resolved
Loading