vote up 3 vote down star
5

I've been asked by a number of unfortunate iPhone users to help them restore data from their iTunes backups. This is easy when they are unencrypted, but not when they are encrypted, whether or not the password is known.

As such, I'm trying to figure out the encryption scheme used on mddata and mdinfo files when encrypted. I have no problems reading these files otherwise, and have built some robust C# libraries for doing so. (If you're able to help, I don't care which language you use. It's the principle I'm after here!)

The Apple "iPhone OS Enterprise Deployment Guide" states that "Device backups can be stored in encrypted format by selecting the Encrypt iPhone Backup option in the device summary pane of iTunes. Files are encrypted using AES128 with a 256-bit key. The key is stored securely in the iPhone keychain."

That's a pretty good clue, and there's some good info here on Stackoverflow on iPhone AES/Rijndael interoperability suggesting a keysize of 128 and CBC mode may be used.

Aside from any other obfuscation, a key and initialisation vector (IV)/salt are required.

One might assume that the key is a manipulation of the "backup password" that users are prompted to enter by iTunes and passed to "AppleMobileBackup.exe", padded in a fashion dictated by CBC. However, given the reference to the iPhone keychain, I wonder whether the "backup password" might not be used as a password on an X509 certificate or symmetric private key, and that the certificate or private key itself might be used as the key. (AES and the iTunes encrypt/decrypt process is symmetric.)

The IV is another matter, and it could be a few things. Perhaps it's one of the keys hard-coded into iTunes, or into the devices themselves.

Although Apple's comment above suggests the key is present on the device's keychain, I think this isn't that important. One can restore an encrypted backup to a different device, which suggests all information relevant to the decryption is present in the backup and iTunes configuration, and that anything solely on the device is irrelevant and replacable in this context. So where might be the key be?

I've listed paths below from a Windows machine but it's much of a muchness whichever OS we use.

The "\appdata\Roaming\Apple Computer\iTunes\itunesprefs.xml" contains a PList with a "Keychain" dict entry in it. The "\programdata\apple\Lockdown\09037027da8f4bdefdea97d706703ca034c88bab.plist" contains a PList with "DeviceCertificate", "HostCertificate", and "RootCertificate", all of which appear to be valid X509 certs. The same file also appears to contain asymmetric keys "RootPrivateKey" and "HostPrivateKey" (my reading suggests these might be PKCS #7-enveloped). Also, within each backup there are "AuthSignature" and "AuthData" values in the Manifest.plist file, although these appear to be rotated as each file gets incrementally backed up, suggested they're not that useful as a key, unless something really quite involved is being done.

There's a lot of misleading stuff out there suggesting getting data from encrypted backups is easy. It's not, and to my knowledge it hasn't been done. Bypassing or disabling the backup encryption is another matter entirely, and is not what I'm looking to do.

This isn't about hacking apart the iPhone or anything like that. All I'm after here is a means to extract data (photos, contacts, etc.) from encrypted iTunes backups as I can unencrypted ones. I've tried all sorts of permutations with the information I've put down above but got nowhere. I'd appreciate any thoughts or techniques I might have missed.

flag

3 Answers

vote up 2 vote down

You should grab a copy of Erica Sadun's mdhelper command line utility (OS X binary & source). It supports listing and extracting the contents of iPhone/iPod Touch backups, including address book & SMS databases, and other application metadata and settings.

link|flag
That's just a PList reader: I can already do that stuff natively. It doesn't support encrypted backups which is what I'm after, and which is beyond the scope of that utility. – afit Oct 2 at 10:03
Did you take the time to try the utility? My backups are encrypted and it does exactly what you're trying to do. – Nathan de Vries Oct 2 at 12:45
Yes, and I've read the source, too. It does not handle encrypted backups, and was last modified prior to release of iTunes' support for encrypted backups. I suspect you mean your backups are encoded or that your iPhone uses an encrypted filesystem, which is another matter entirely. As well as there being no support for encryption in the code, more obviously there's no option to pass in a password in the command-line options. And the code doesn't use any certs or keychains. I'd love to be proven wrong on this, but I really don't think I am! I appreciate the suggestion, though. – afit Oct 2 at 13:01
vote up 0 vote down

i need this to happen as i have forgotten the password for my encrypted back up and have lost roughly 110 numbers and other data photos etc!! :(

link|flag
vote up 0 vote down

I downloaded a copy of Erica Sadun's mdhelper but I don't know how to compile it or how to use it. Please provide me with some guidance. Thanks

link|flag
Pierre, if your backup is encrypted it won't help, as currently nothing will. If your backup isn't encrypted you could try the free iPhone backup extractors at iphonebackupextractor.com or supercrazyawesome.com. – afit Nov 7 at 19:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.