### appdecrypt Usage Example on Mac Source: https://github.com/paradiseduo/appdecrypt/blob/main/README.md Demonstrates how to use appdecrypt to decrypt an application on macOS. It takes the path to the encrypted application and the desired output path as arguments. ```bash appdecrypt /Application/Test.app /Users/admin/Desktop/Test.app ``` -------------------------------- ### appdecrypt Usage Example on Jailbroken iPhone Source: https://github.com/paradiseduo/appdecrypt/blob/main/README.md Shows the command to run appdecrypt on a jailbroken iPhone. It requires the path to the encrypted application bundle and an output directory. ```bash ./appdecrypt /var/containers/Bundle/Application/XXXXXX /tmp ``` -------------------------------- ### appdecrypt Example Decryption Output on Mac Source: https://github.com/paradiseduo/appdecrypt/blob/main/README.md Shows the expected output after successfully decrypting an application on macOS using appdecrypt. It lists the files that were successfully dumped and the resulting directory structure. ```bash > ./appdecrypt /Applicaiton/Test.app /Users/admin/Desktop/Test.app Success to copy file. Dump /Applications/Test.app/Wrapper/Test.app/Test Success Dump /Applications/Test.app/Wrapper/Test.app/PlugIns/TestNotificationService.appex/TestNotificationService Success Dump /Applications/Test.app/Wrapper/Test.app/Frameworks/trackerSDK.framework/trackerSDK Success Dump /Applications/Test.app/Wrapper/Test.app/Frameworks/AgoraRtcKit.framework/AgoraRtcKit Success > cd /Users/admin/Desktop/Test.app > ls WrappedBundle Wrapper > cd Wrapper > ls BundleMetadata.plist Test.app iTunesMetadata.plist ``` -------------------------------- ### appdecrypt Example Decryption Output on Jailbroken iPhone Source: https://github.com/paradiseduo/appdecrypt/blob/main/README.md Illustrates the output after decrypting an application on a jailbroken iPhone. It lists successfully dumped binaries and frameworks, and shows how to archive the decrypted files. ```bash // In iPhone shell > ./appdecrypt /var/containers/Bundle/Application/5B5D4E97-E760-4AC5-BFEE-F0FF72EBB19E /tmp Success to copy file. Dump /var/containers/Bundle/Application/5B5D4E97-E760-4AC5-BFEE-F0FF72EBB19E/KingsRaid.app/KingsRaid Success Dump /var/containers/Bundle/Application/5B5D4E97-E760-4AC5-BFEE-F0FF72EBB19E/KingsRaid.app/Frameworks/FBSDKGamingServicesKit.framework/FBSDKGamingServicesKit Success Dump /var/containers/Bundle/Application/5B5D4E97-E760-4AC5-BFEE-F0FF72EBB19E/KingsRaid.app/Frameworks/FBLPromises.framework/FBLPromises Success Dump /var/containers/Bundle/Application/5B5D4E97-E760-4AC5-BFEE-F0FF72EBB19E/KingsRaid.app/Frameworks/FBSDKShareKit.framework/FBSDKShareKit Success Dump /var/containers/Bundle/Application/5B5D4E97-E760-4AC5-BFEE-F0FF72EBB19E/KingsRaid.app/Frameworks/GoogleUtilities.framework/GoogleUtilities Success Dump /var/containers/Bundle/Application/5B5D4E97-E760-4AC5-BFEE-F0FF72EBB19E/KingsRaid.app/Frameworks/FBSDKLoginKit.framework/FBSDKLoginKit Success Dump /var/containers/Bundle/Application/5B5D4E97-E760-4AC5-BFEE-F0FF72EBB19E/KingsRaid.app/Frameworks/nanopb.framework/nanopb Success Dump /var/containers/Bundle/Application/5B5D4E97-E760-4AC5-BFEE-F0FF72EBB19E/KingsRaid.app/Frameworks/FBSDKCoreKit.framework/FBSDKCoreKit Success Dump /var/containers/Bundle/Application/5B5D4E97-E760-4AC5-BFEE-F0FF72EBB19E/KingsRaid.app/Frameworks/Protobuf.framework/Protobuf Success > cd Payload > ls BundleMetadata.plist KingsRaid.app/ iTunesMetadata.plist > tar -cvf /tmp/dump.tar ./ // In mac shell > cd ~/Desktop > scp -P 2222 root@127.0.0.1:/tmp/dump.tar . dump.tar ``` -------------------------------- ### Build and Transfer appdecrypt to Jailbroken iPhone Source: https://github.com/paradiseduo/appdecrypt/blob/main/README.md Installs ldid, clones the repository, builds the iOS version of appdecrypt, and then securely copies the executable to the jailbroken iPhone. This prepares the tool for use on iOS devices. ```bash > brew install ldid > git clone https://github.com/paradiseduo/appdecrypt.git > cd appdecrypt > chmod +x build-iOS.sh > ./build-iOS.sh > scp -P 2222 appdecrypt root@127.0.0.1:/tmp ``` -------------------------------- ### Build and Run appdecrypt on M1 Mac Source: https://github.com/paradiseduo/appdecrypt/blob/main/README.md Clone the repository, build the macOS ARM version, and then run the appdecrypt tool. This prepares the environment for decrypting applications on M1 Macs. ```bash > git clone https://github.com/paradiseduo/appdecrypt.git > cd appdecrypt > chmod +x build-macOS_arm.sh > ./build-macOS_arm.sh > ./appdecrypt ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.