├── .gitignore ├── Makefile ├── README.md ├── Sharing ├── SFAppleIDAccount.h ├── SFAppleIDContactInfo.h ├── SFAppleIDIdentity.h └── SFAppleIDValidationRecord.h ├── entitlements.plist └── main.m /.gitignore: -------------------------------------------------------------------------------- 1 | # Binary 2 | airdrop-secret-extractor 3 | 4 | # Output 5 | *.cms 6 | *.pem 7 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/airdrop-keychain-extractor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/airdrop-keychain-extractor/HEAD/README.md -------------------------------------------------------------------------------- /Sharing/SFAppleIDAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/airdrop-keychain-extractor/HEAD/Sharing/SFAppleIDAccount.h -------------------------------------------------------------------------------- /Sharing/SFAppleIDContactInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/airdrop-keychain-extractor/HEAD/Sharing/SFAppleIDContactInfo.h -------------------------------------------------------------------------------- /Sharing/SFAppleIDIdentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/airdrop-keychain-extractor/HEAD/Sharing/SFAppleIDIdentity.h -------------------------------------------------------------------------------- /Sharing/SFAppleIDValidationRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/airdrop-keychain-extractor/HEAD/Sharing/SFAppleIDValidationRecord.h -------------------------------------------------------------------------------- /entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/airdrop-keychain-extractor/HEAD/entitlements.plist -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/airdrop-keychain-extractor/HEAD/main.m --------------------------------------------------------------------------------