Skip to content

Instantly share code, notes, and snippets.

@ichitaso
Created December 29, 2017 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ichitaso/8a80e4a636e2be5adc0e8beabfee6219 to your computer and use it in GitHub Desktop.
Save ichitaso/8a80e4a636e2be5adc0e8beabfee6219 to your computer and use it in GitHub Desktop.

How to save apticket.der

Should work on UNIX like boxes, not sure about Windows

  1. SSH to your device
  2. Export jb dir to the PATH : export PATH=$PATH:/jb/usr/bin:/jb/bin:/jb/sbin:/jb/usr/sbin:/jb/usr/local/bin:
  3. Locate apticket.der just to be sure it's here: ls /System/Library/Caches/.
    Here is the output you should have :
$ ls /System/Library/Caches/
apticket.der            com.apple.kernelcaches  com.apple.xpcd
com.apple.dyld          com.apple.xpc

For some reason scp needs dbclient in /usr/bin/. Since it's not in this dir but in /jb/usr/local/bin/ you just have to copy dbclient to /usr/bin/ like this :

$ cp /jb/usr/local/bin/dbclient /usr/bin
  1. Run scp and replace user by your username and desktop_ip by the IP address of your machine (not your jailbroken device) :

scp -P 22 /System/Library/Caches/apticket.der user@deskop_ip:/home/user/Documents

  1. Once received, do not remove it
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment