🔒️ fix(ipatool): add keychain passphrase to global flags

Add keychain passphrase to global flags for ipatool to ensure secure access to the keychain during non-interactive operations. This change is necessary to prevent potential security issues when using the ipatool in automated environments.
This commit is contained in:
2026-03-10 04:07:31 +03:00
parent 940960700e
commit b1440eb5f4

View File

@ -2,5 +2,5 @@ package constants
const (
IPAToolPath = "ipatool"
GlobalFlags = "--non-interactive --format json"
GlobalFlags = "--non-interactive --format json --keychain-passphrase 1234567890"
)