Skip to content

Instantly share code, notes, and snippets.

@FrankSpierings
Created July 30, 2024 06:56
Show Gist options
  • Save FrankSpierings/1afe68b7c3f866f982782f6e73f76451 to your computer and use it in GitHub Desktop.
Save FrankSpierings/1afe68b7c3f866f982782f6e73f76451 to your computer and use it in GitHub Desktop.
Shell script to find names and identifiers on a rooted IOS phone
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