GitXplorerGitXplorer
T

idevice-app-id-finder

public
1 stars
0 forks
0 issues

Commits

List of commits on branch main.
Verified
439cab41088dabf04218282c9511e9e17f23fa62

chore: update README

TTinkoLiu committed a year ago
Verified
10301cc163bc7a40f781123ccebdcd2fa82e66a7

chore: bump version

TTinkoLiu committed a year ago
Verified
92e1586c5690581806d4f6415e10690db42ca991

chore: bump version

TTinkoLiu committed a year ago
Verified
743094d383d336141c519f2d3224e31eeeb66665

chore: update exports

TTinkoLiu committed a year ago
Verified
72c13a7a3bc90d5c29dc9ed17515892944630e9b

feat: use new parser

TTinkoLiu committed a year ago
Verified
0ccfadb5bf616c600df9e31b3bdeb72ac9193e35

feat(InstallationProxy): determine return attributes

TTinkoLiu committed a year ago

README

The README file for this repository.

iDevice App ID Finder

A tool for figuring out what Apple ID was used for each apps on an iOS device.

Summary

This tool can help you find out which Apple ID was used for purchasing all your apps.

Usage

Install with any package manager you like, for example:

$ pnpm install -g idevice-app-id-finder

Then you can use it like this:

$ idevice-app-id-finder -h
Usage: idevice-app-id-finder [options] [command]

A tool for figuring out what Apple ID was used for each apps on an iOS device

Options:
  -V, --version   output the version number
  -h, --help      display help for command

Commands:
  devices         Print connected devices
  list [options]  List all apps installed on the device
  help [command]  display help for command

If you connect only one device, run it directly:

$ idevice-app-id-finder
Getting connected devices
Using device Tinko's iPhone
Starting installation proxy service
Listing installed apps...
List installed app finished.
Getting iTunes mainfest
Starting parsing mainfest for 100 apps...
Done, output written to output.csv

Output will be like

Bundle Identifier,Display Name,Apple ID
some.bundle.id,AppName,appleid@somedomain

For more options, you can use idevice-app-id-finder list -h to get help.

Available options:

$ idevice-app-id-finder list -h
Usage: idevice-app-id-finder list [options]

List all apps installed on the device

Options:
  -o, --output <file>    Output file (default: ./output.csv)
  -d, --device <device>  Device to use (default: "auto")
  -h, --help             display help for command

Using as library

This package also supports using as a library. See src/index.ts for more details.

Credits