├── .gitignore ├── LICENSE ├── README.md ├── captures ├── CacheRegistration.chls └── ios-update-cache.pcapng ├── locator ├── README.md └── locate.dart ├── registration ├── README.md ├── cert.cer ├── decode-request.dart ├── register.dart ├── request.b64 ├── request.bin ├── session.b64 ├── session.der ├── session.request ├── session.response ├── session.response.b64 └── unregister.bin ├── server ├── README.md ├── build-cache-url.dart ├── build-source-url.dart ├── config.real.plist └── download-config.dart ├── signature └── README.md └── tools ├── frida-ssl-pin-targeted.py └── frida-ssl-pin.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/README.md -------------------------------------------------------------------------------- /captures/CacheRegistration.chls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/captures/CacheRegistration.chls -------------------------------------------------------------------------------- /captures/ios-update-cache.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/captures/ios-update-cache.pcapng -------------------------------------------------------------------------------- /locator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/locator/README.md -------------------------------------------------------------------------------- /locator/locate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/locator/locate.dart -------------------------------------------------------------------------------- /registration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/registration/README.md -------------------------------------------------------------------------------- /registration/cert.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/registration/cert.cer -------------------------------------------------------------------------------- /registration/decode-request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/registration/decode-request.dart -------------------------------------------------------------------------------- /registration/register.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/registration/register.dart -------------------------------------------------------------------------------- /registration/request.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/registration/request.b64 -------------------------------------------------------------------------------- /registration/request.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/registration/request.bin -------------------------------------------------------------------------------- /registration/session.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/registration/session.b64 -------------------------------------------------------------------------------- /registration/session.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/registration/session.der -------------------------------------------------------------------------------- /registration/session.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/registration/session.request -------------------------------------------------------------------------------- /registration/session.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/registration/session.response -------------------------------------------------------------------------------- /registration/session.response.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/registration/session.response.b64 -------------------------------------------------------------------------------- /registration/unregister.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/registration/unregister.bin -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/server/README.md -------------------------------------------------------------------------------- /server/build-cache-url.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/server/build-cache-url.dart -------------------------------------------------------------------------------- /server/build-source-url.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/server/build-source-url.dart -------------------------------------------------------------------------------- /server/config.real.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/server/config.real.plist -------------------------------------------------------------------------------- /server/download-config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/server/download-config.dart -------------------------------------------------------------------------------- /signature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/signature/README.md -------------------------------------------------------------------------------- /tools/frida-ssl-pin-targeted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/tools/frida-ssl-pin-targeted.py -------------------------------------------------------------------------------- /tools/frida-ssl-pin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azenla/AppleCache/HEAD/tools/frida-ssl-pin.js --------------------------------------------------------------------------------