From b1440eb5f4e63756959d2203ccb4fd61adb56821 Mon Sep 17 00:00:00 2001 From: trojvn Date: Tue, 10 Mar 2026 04:07:31 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=92=EF=B8=8F=20fix(ipatool):=20add=20k?= =?UTF-8?q?eychain=20passphrase=20to=20global=20flags?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- constants/constants.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants/constants.go b/constants/constants.go index 244bdf5..fca141c 100644 --- a/constants/constants.go +++ b/constants/constants.go @@ -2,5 +2,5 @@ package constants const ( IPAToolPath = "ipatool" - GlobalFlags = "--non-interactive --format json" + GlobalFlags = "--non-interactive --format json --keychain-passphrase 1234567890" )