Have you ever wanted to run a Cordova IPA designed for iPad on an iPhone?
Well, you're in luck! There’s a straightforward way to do it, especially if you’re registered as an Apple Developer.
unzip [FileName].ipa
rm -R "./Payload/[PackageName].app/_CodeSignature"
cp ./Payload/[PackageName].app/Info.plist .
#Change UIDeviceFamily
rm -rf ./Payload/[PackageName].app/Info.plist
cp ./Info.plist ./Payload/[PackageName].app/Info.plist
cp "../embedded.mobileprovision" "Payload/[PackageName].app/embedded.mobileprovision"
#determine the identity name to use for the next step
security find-identity -pcodesigning -v
/usr/bin/codesign -f -s "iPhone Distribution: xxx (yyy)" --entitlements entitlements.plist "Payload/[PackageName].app"
zip -qr test.ipa Payload
Let's install it with 3utools on an iPhone! If you have any questions, please let me know. haha
Note: Please be aware that there may be issues related to image size(e.g. dialog). Most screens are optimized to support larger displays and include scroll bars to enhance user navigation. However, should the display size be inadequate, you may encounter viewing limitations.
'HACKING > mobile_IOS' 카테고리의 다른 글
Setting#1 A Guide to Using Checkra1n Jailbreak on Windows for iOS 14.X (2023) (0) | 2023.10.02 |
---|---|
iOS Analysis#1 CydiaSubstrate Hooking (1) | 2020.07.04 |
iOS setting for Pentesting#3 Clutch(tampering) (0) | 2020.06.12 |
iOS setting for Pentesting#2 flyjb(jailbreak bypass) (0) | 2020.06.11 |
iOS setting for Pentesting#1 jailbreak, frida (0) | 2020.06.10 |