Signing failing on all IPA’s.
Screenshot below. Same error on every IPA when singing on IOS 18.
Same thing happened to me twice. I just reinstalled the app and it worked again.
Same with me recinstalled feather same outcome
Please try using feather 1.0.5
?
Same issue reinstalling doesnt help , same app working with esign
are you using the latest feather 1.0.5 from https://github.com/khcrysalis/Feather/releases/latest ?
Yup
This issue still persists in the latest version. Haven't had one release of Feather that has worked for me yet without throwing up an error.
I'm having the same issue, was there ever a fix for this? I've tried both the latest and an older version and neither works, while esign works for the same app (it just doesn't give me the entitlement I need)
send logs
Looks like it might just be the one app, I’m trying to install Pomelo. It did end up working with a different ipa.
zsign failed to sign the openssl framework thats inside of the app
>>> Can't Parse BundleExecute File! /private/var/mobile/Containers/Data/Application/A13FC07C-2C1B-4902-8430-D7FB0E5B1149/tmp/7CBD3E31-85E6-4E70-BC07-C558D238FA28/Pomelo.app/Frameworks/OpenSSL.framework/OpenSSL
Looks like it might just be the one app, I’m trying to install Pomelo. It did end up working with a different ipa.
Feather has never worked with Pomelo, due to its reliance on zsign. That's the second reason why I still have Scarlet installed, to update Feather, and for Pomelo.
Looks like it might just be the one app, I’m trying to install Pomelo. It did end up working with a different ipa. logs.txt
Feather has never worked with Pomelo, due to its reliance on zsign. That's the second reason why I still have Scarlet installed, to update Feather, and for Pomelo.
Do you use a paid developer account with Scarlet? I have a kravasign cert and I'm not seeing a way to use it with scarlet
IIRC It was to do with the app, sorry guys!
It was actually due to Pomelo's OpenSSL's main executable's permission is 0555 instead of 0755, so zsign is not able to open it in write mode.
If we add chmod(path, 0755) if open failed here https://github.com/khcrysalis/Feather/blob/9747420785d95aa116353a2efe7a0adfb5c2646e/Shared/Magic/zsign/common/common.cpp#L40
int fd = open(path, ro ? O_RDONLY : O_RDWR);
if (fd <= 0)
{
if(chmod(path, 0755) == 0) {
fd = open(path, ro ? O_RDONLY : O_RDWR);
}
}
if (fd <= 0)
{
return NULL;
}
This issue can be solved.
oh! thanks
wait for next release
Hi, having the same issue here, please let me know when the update will be released, thanks
Im getting this same problem. It was working now problem now I can't sign anything