Created
July 30, 2024 06:56
-
-
Save FrankSpierings/1afe68b7c3f866f982782f6e73f76451 to your computer and use it in GitHub Desktop.
Shell script to find names and identifiers on a rooted IOS phone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for app in /var/containers/Bundle/Application/*; do | |
guid=$(basename "$app") | |
name=$(plutil $app/*.app/Info.plist | grep CFBundleIdentifier) | |
echo "$name => $guid" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment