├── .DS_Store ├── .gitignore ├── CREDITS.txt ├── IOKit.frameworkHeaders ├── IOCFPlugIn.h ├── IOKitKeys.h ├── IOKitLib.h ├── IOReturn.h ├── IOTypes.h └── OSMessageNotification.h ├── README.md ├── README.txt ├── boot.bat ├── boot.py ├── data ├── bin │ ├── ioreg │ └── sysctl ├── boot │ └── .kernels_and_ramdisks ├── ipsw │ └── .ipsws ├── libncurses.5.dylib └── ssh.tar.gz ├── dependencies └── M2Crypto-0.21.1-py2.7-macosx-10.9-intel.egg ├── dump_data_partition.sh ├── emf_decrypter ├── BUILD ├── CMakeLists.txt ├── LICENSE ├── README.txt ├── common │ ├── CMakeLists.txt │ ├── abstractfile.c │ └── base64.c ├── emf │ ├── CMakeLists.txt │ ├── emf.h │ ├── emf_decrypter.c │ └── emf_init.c ├── hfs │ ├── CMakeLists.txt │ ├── btree.c │ ├── catalog.c │ ├── extents.c │ ├── fastunicodecompare.c │ ├── flatfile.c │ ├── hfs.c │ ├── hfscompress.c │ ├── hfslib.c │ ├── rawfile.c │ ├── utility.c │ ├── volume.c │ └── xattr.c └── includes │ ├── abstractfile.h │ ├── common.h │ ├── dmg │ ├── dmg.h │ ├── dmgfile.h │ ├── dmglib.h │ └── filevault.h │ └── hfs │ ├── hfscompress.h │ ├── hfslib.h │ └── hfsplus.h ├── img3fs ├── Makefile ├── README └── img3fs.c ├── ios7.patch.v3 ├── make_ramdisk_n92ap.sh ├── old ├── emf_decrypter │ ├── BUILD │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.txt │ ├── common │ │ ├── CMakeLists.txt │ │ ├── abstractfile.c │ │ └── base64.c │ ├── emf │ │ ├── CMakeLists.txt │ │ ├── emf.h │ │ ├── emf_decrypter.c │ │ └── emf_init.c │ ├── hfs │ │ ├── CMakeLists.txt │ │ ├── btree.c │ │ ├── catalog.c │ │ ├── extents.c │ │ ├── fastunicodecompare.c │ │ ├── flatfile.c │ │ ├── hfs.c │ │ ├── hfscompress.c │ │ ├── hfslib.c │ │ ├── rawfile.c │ │ ├── utility.c │ │ ├── volume.c │ │ └── xattr.c │ └── includes │ │ ├── abstractfile.h │ │ ├── common.h │ │ ├── dmg │ │ ├── dmg.h │ │ ├── dmgfile.h │ │ ├── dmglib.h │ │ └── filevault.h │ │ └── hfs │ │ ├── hfscompress.h │ │ ├── hfslib.h │ │ └── hfsplus.h └── img3fs │ ├── Makefile │ ├── README │ └── img3fs.c ├── python_scripts ├── README.txt ├── backup_tool.py ├── backups │ ├── __init__.py │ ├── __init__.pyc │ ├── backup3.py │ ├── backup3.pyc │ ├── backup4.py │ └── backup4.pyc ├── crypto │ ├── PBKDF2.py │ ├── PBKDF2.pyc │ ├── __init__.py │ ├── __init__.pyc │ ├── aes.py │ ├── aes.pyc │ ├── aes_ctypes.py │ ├── aeswrap.py │ ├── aeswrap.pyc │ ├── curve25519.py │ ├── curve25519.pyc │ ├── gcm.py │ └── gcm.pyc ├── demo_backup_keychain.py ├── demo_bruteforce.py ├── demo_escrow.py ├── emf_decrypter.py ├── emf_undelete.py ├── firmware │ ├── __init__.py │ ├── __init__.pyc │ ├── img2.py │ ├── img2.pyc │ ├── img3.py │ ├── img3.pyc │ ├── scfg.py │ └── scfg.pyc ├── hfs │ ├── __init__.py │ ├── __init__.pyc │ ├── btree.py │ ├── btree.pyc │ ├── emf.py │ ├── emf.pyc │ ├── fastunicode.py │ ├── fastunicode.pyc │ ├── hfs.py │ ├── hfs.pyc │ ├── journal.py │ ├── journal.pyc │ ├── structs.py │ └── structs.pyc ├── icloud │ ├── __init__.py │ ├── backup.py │ ├── chunkserver.proto │ ├── chunkserver_pb2.py │ ├── icloud.proto │ ├── icloud_pb2.py │ └── pbuf.py ├── ios_examiner.py ├── kernel_patcher.py ├── keychain │ ├── __init__.py │ ├── __init__.pyc │ ├── keychain.py │ ├── keychain.pyc │ ├── keychain3.py │ ├── keychain3.pyc │ ├── keychain4.py │ ├── keychain4.pyc │ ├── managedconfiguration.py │ ├── managedconfiguration.pyc │ ├── store.py │ └── store.pyc ├── keychain_tool.py ├── keystore │ ├── __init__.py │ ├── __init__.pyc │ ├── effaceable.py │ ├── effaceable.pyc │ ├── keybag.py │ └── keybag.pyc ├── nand │ ├── IOFlashPartitionScheme.py │ ├── IOFlashPartitionScheme.pyc │ ├── __init__.py │ ├── __init__.pyc │ ├── carver.py │ ├── carver.pyc │ ├── image.py │ ├── image.pyc │ ├── legacyftl.py │ ├── legacyftl.pyc │ ├── nand.py │ ├── nand.pyc │ ├── partition_tables.py │ ├── partition_tables.pyc │ ├── ppn.py │ ├── ppn.pyc │ ├── ppn_carver.py │ ├── ppn_carver.pyc │ ├── remote.py │ ├── remote.pyc │ ├── structs.py │ ├── structs.pyc │ ├── vfl.py │ ├── vfl.pyc │ ├── vsvfl.py │ ├── vsvfl.pyc │ ├── yaftl.py │ └── yaftl.pyc ├── usbmux │ ├── __init__.py │ ├── __init__.pyc │ ├── tcprelay.py │ ├── usbmux.py │ └── usbmux.pyc ├── util │ ├── __init__.py │ ├── __init__.pyc │ ├── asciitables.py │ ├── asciitables.pyc │ ├── bdev.py │ ├── bdev.pyc │ ├── bplist.py │ ├── bplist.pyc │ ├── bruteforce.py │ ├── bruteforce.pyc │ ├── cert.py │ ├── cert.pyc │ ├── lzss.py │ ├── lzss.pyc │ ├── ramdiskclient.py │ ├── ramdiskclient.pyc │ ├── tlv.py │ └── tlv.pyc ├── windows_redsn0w_keys.py └── wordlist.dict ├── ramdisk_tools ├── AppleEffaceableStorage.c ├── AppleEffaceableStorage.h ├── AppleKeyStore.c ├── AppleKeyStore.h ├── AppleKeyStore_kdf.c ├── IOAESAccelerator.c ├── IOAESAccelerator.h ├── IOKit ├── IOKit.c ├── IOKit.h ├── IOUSBDeviceControllerLib.h ├── Makefile ├── bsdcrypto │ ├── key_wrap.c │ ├── key_wrap.h │ ├── pbkdf2.c │ ├── pbkdf2.h │ ├── rijndael.c │ ├── rijndael.h │ ├── sha1.c │ └── sha1.h ├── device_info.c ├── device_info.h ├── device_infos.c ├── dump_data_partition.sh ├── entitlements.plist ├── image.c ├── image.h ├── ioflash │ ├── IOFlashPartitionScheme.c │ ├── IOFlashPartitionScheme.h │ ├── Makefile │ ├── externalMethod.S │ ├── externalMethod.h │ ├── ioflash.c │ ├── ioflash.h │ ├── ioflash_kernel.c │ └── ioflashstoragekit.c ├── kernel_patcher.c ├── keystore_device.xml ├── plist_server.c ├── plist_server.h ├── registry.c ├── registry.h ├── remote_functions.c ├── remote_functions.h ├── restored_external.c ├── scripts │ └── mount_partitions.sh ├── shsh_dump.c ├── systemkb_bruteforce.c ├── tfp0.plist ├── ttbthingy.c ├── util.c └── util.h ├── ssh.tar.gz ├── tcprelay.bat ├── tcprelay.sh ├── tmp ├── .DS_Store └── keychain.keys.plist └── usbmuxd-python-client ├── relay.bat ├── tcprelay.py ├── usbmux.py └── usbmux.pyc /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /IOKit.frameworkHeaders/IOCFPlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/IOKit.frameworkHeaders/IOCFPlugIn.h -------------------------------------------------------------------------------- /IOKit.frameworkHeaders/IOKitKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/IOKit.frameworkHeaders/IOKitKeys.h -------------------------------------------------------------------------------- /IOKit.frameworkHeaders/IOKitLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/IOKit.frameworkHeaders/IOKitLib.h -------------------------------------------------------------------------------- /IOKit.frameworkHeaders/IOReturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/IOKit.frameworkHeaders/IOReturn.h -------------------------------------------------------------------------------- /IOKit.frameworkHeaders/IOTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/IOKit.frameworkHeaders/IOTypes.h -------------------------------------------------------------------------------- /IOKit.frameworkHeaders/OSMessageNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/IOKit.frameworkHeaders/OSMessageNotification.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/README.txt -------------------------------------------------------------------------------- /boot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/boot.bat -------------------------------------------------------------------------------- /boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/boot.py -------------------------------------------------------------------------------- /data/bin/ioreg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/data/bin/ioreg -------------------------------------------------------------------------------- /data/bin/sysctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/data/bin/sysctl -------------------------------------------------------------------------------- /data/boot/.kernels_and_ramdisks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/ipsw/.ipsws: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/libncurses.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/data/libncurses.5.dylib -------------------------------------------------------------------------------- /data/ssh.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/data/ssh.tar.gz -------------------------------------------------------------------------------- /dependencies/M2Crypto-0.21.1-py2.7-macosx-10.9-intel.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/dependencies/M2Crypto-0.21.1-py2.7-macosx-10.9-intel.egg -------------------------------------------------------------------------------- /dump_data_partition.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/dump_data_partition.sh -------------------------------------------------------------------------------- /emf_decrypter/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/BUILD -------------------------------------------------------------------------------- /emf_decrypter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/CMakeLists.txt -------------------------------------------------------------------------------- /emf_decrypter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/LICENSE -------------------------------------------------------------------------------- /emf_decrypter/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/README.txt -------------------------------------------------------------------------------- /emf_decrypter/common/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_library(common abstractfile.c base64.c) 2 | 3 | -------------------------------------------------------------------------------- /emf_decrypter/common/abstractfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/common/abstractfile.c -------------------------------------------------------------------------------- /emf_decrypter/common/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/common/base64.c -------------------------------------------------------------------------------- /emf_decrypter/emf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/emf/CMakeLists.txt -------------------------------------------------------------------------------- /emf_decrypter/emf/emf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/emf/emf.h -------------------------------------------------------------------------------- /emf_decrypter/emf/emf_decrypter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/emf/emf_decrypter.c -------------------------------------------------------------------------------- /emf_decrypter/emf/emf_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/emf/emf_init.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/hfs/CMakeLists.txt -------------------------------------------------------------------------------- /emf_decrypter/hfs/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/hfs/btree.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/catalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/hfs/catalog.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/extents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/hfs/extents.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/fastunicodecompare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/hfs/fastunicodecompare.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/flatfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/hfs/flatfile.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/hfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/hfs/hfs.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/hfscompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/hfs/hfscompress.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/hfslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/hfs/hfslib.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/rawfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/hfs/rawfile.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/hfs/utility.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/hfs/volume.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/hfs/xattr.c -------------------------------------------------------------------------------- /emf_decrypter/includes/abstractfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/includes/abstractfile.h -------------------------------------------------------------------------------- /emf_decrypter/includes/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/includes/common.h -------------------------------------------------------------------------------- /emf_decrypter/includes/dmg/dmg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/includes/dmg/dmg.h -------------------------------------------------------------------------------- /emf_decrypter/includes/dmg/dmgfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/includes/dmg/dmgfile.h -------------------------------------------------------------------------------- /emf_decrypter/includes/dmg/dmglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/includes/dmg/dmglib.h -------------------------------------------------------------------------------- /emf_decrypter/includes/dmg/filevault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/includes/dmg/filevault.h -------------------------------------------------------------------------------- /emf_decrypter/includes/hfs/hfscompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/includes/hfs/hfscompress.h -------------------------------------------------------------------------------- /emf_decrypter/includes/hfs/hfslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/includes/hfs/hfslib.h -------------------------------------------------------------------------------- /emf_decrypter/includes/hfs/hfsplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/emf_decrypter/includes/hfs/hfsplus.h -------------------------------------------------------------------------------- /img3fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/img3fs/Makefile -------------------------------------------------------------------------------- /img3fs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/img3fs/README -------------------------------------------------------------------------------- /img3fs/img3fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/img3fs/img3fs.c -------------------------------------------------------------------------------- /ios7.patch.v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ios7.patch.v3 -------------------------------------------------------------------------------- /make_ramdisk_n92ap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/make_ramdisk_n92ap.sh -------------------------------------------------------------------------------- /old/emf_decrypter/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/BUILD -------------------------------------------------------------------------------- /old/emf_decrypter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/CMakeLists.txt -------------------------------------------------------------------------------- /old/emf_decrypter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/LICENSE -------------------------------------------------------------------------------- /old/emf_decrypter/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/README.txt -------------------------------------------------------------------------------- /old/emf_decrypter/common/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_library(common abstractfile.c base64.c) 2 | 3 | -------------------------------------------------------------------------------- /old/emf_decrypter/common/abstractfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/common/abstractfile.c -------------------------------------------------------------------------------- /old/emf_decrypter/common/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/common/base64.c -------------------------------------------------------------------------------- /old/emf_decrypter/emf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/emf/CMakeLists.txt -------------------------------------------------------------------------------- /old/emf_decrypter/emf/emf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/emf/emf.h -------------------------------------------------------------------------------- /old/emf_decrypter/emf/emf_decrypter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/emf/emf_decrypter.c -------------------------------------------------------------------------------- /old/emf_decrypter/emf/emf_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/emf/emf_init.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/CMakeLists.txt -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/btree.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/catalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/catalog.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/extents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/extents.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/fastunicodecompare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/fastunicodecompare.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/flatfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/flatfile.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/hfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/hfs.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/hfscompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/hfscompress.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/hfslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/hfslib.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/rawfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/rawfile.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/utility.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/volume.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/xattr.c -------------------------------------------------------------------------------- /old/emf_decrypter/includes/abstractfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/includes/abstractfile.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/includes/common.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/dmg/dmg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/includes/dmg/dmg.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/dmg/dmgfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/includes/dmg/dmgfile.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/dmg/dmglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/includes/dmg/dmglib.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/dmg/filevault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/includes/dmg/filevault.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/hfs/hfscompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/includes/hfs/hfscompress.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/hfs/hfslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/includes/hfs/hfslib.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/hfs/hfsplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/emf_decrypter/includes/hfs/hfsplus.h -------------------------------------------------------------------------------- /old/img3fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/img3fs/Makefile -------------------------------------------------------------------------------- /old/img3fs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/img3fs/README -------------------------------------------------------------------------------- /old/img3fs/img3fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/old/img3fs/img3fs.c -------------------------------------------------------------------------------- /python_scripts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/README.txt -------------------------------------------------------------------------------- /python_scripts/backup_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/backup_tool.py -------------------------------------------------------------------------------- /python_scripts/backups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/backups/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/backups/__init__.pyc -------------------------------------------------------------------------------- /python_scripts/backups/backup3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/backups/backup3.py -------------------------------------------------------------------------------- /python_scripts/backups/backup3.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/backups/backup3.pyc -------------------------------------------------------------------------------- /python_scripts/backups/backup4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/backups/backup4.py -------------------------------------------------------------------------------- /python_scripts/backups/backup4.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/backups/backup4.pyc -------------------------------------------------------------------------------- /python_scripts/crypto/PBKDF2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/crypto/PBKDF2.py -------------------------------------------------------------------------------- /python_scripts/crypto/PBKDF2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/crypto/PBKDF2.pyc -------------------------------------------------------------------------------- /python_scripts/crypto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/crypto/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/crypto/__init__.pyc -------------------------------------------------------------------------------- /python_scripts/crypto/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/crypto/aes.py -------------------------------------------------------------------------------- /python_scripts/crypto/aes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/crypto/aes.pyc -------------------------------------------------------------------------------- /python_scripts/crypto/aes_ctypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/crypto/aes_ctypes.py -------------------------------------------------------------------------------- /python_scripts/crypto/aeswrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/crypto/aeswrap.py -------------------------------------------------------------------------------- /python_scripts/crypto/aeswrap.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/crypto/aeswrap.pyc -------------------------------------------------------------------------------- /python_scripts/crypto/curve25519.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/crypto/curve25519.py -------------------------------------------------------------------------------- /python_scripts/crypto/curve25519.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/crypto/curve25519.pyc -------------------------------------------------------------------------------- /python_scripts/crypto/gcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/crypto/gcm.py -------------------------------------------------------------------------------- /python_scripts/crypto/gcm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/crypto/gcm.pyc -------------------------------------------------------------------------------- /python_scripts/demo_backup_keychain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/demo_backup_keychain.py -------------------------------------------------------------------------------- /python_scripts/demo_bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/demo_bruteforce.py -------------------------------------------------------------------------------- /python_scripts/demo_escrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/demo_escrow.py -------------------------------------------------------------------------------- /python_scripts/emf_decrypter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/emf_decrypter.py -------------------------------------------------------------------------------- /python_scripts/emf_undelete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/emf_undelete.py -------------------------------------------------------------------------------- /python_scripts/firmware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/firmware/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/firmware/__init__.pyc -------------------------------------------------------------------------------- /python_scripts/firmware/img2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/firmware/img2.py -------------------------------------------------------------------------------- /python_scripts/firmware/img2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/firmware/img2.pyc -------------------------------------------------------------------------------- /python_scripts/firmware/img3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/firmware/img3.py -------------------------------------------------------------------------------- /python_scripts/firmware/img3.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/firmware/img3.pyc -------------------------------------------------------------------------------- /python_scripts/firmware/scfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/firmware/scfg.py -------------------------------------------------------------------------------- /python_scripts/firmware/scfg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/firmware/scfg.pyc -------------------------------------------------------------------------------- /python_scripts/hfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/hfs/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/hfs/__init__.pyc -------------------------------------------------------------------------------- /python_scripts/hfs/btree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/hfs/btree.py -------------------------------------------------------------------------------- /python_scripts/hfs/btree.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/hfs/btree.pyc -------------------------------------------------------------------------------- /python_scripts/hfs/emf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/hfs/emf.py -------------------------------------------------------------------------------- /python_scripts/hfs/emf.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/hfs/emf.pyc -------------------------------------------------------------------------------- /python_scripts/hfs/fastunicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/hfs/fastunicode.py -------------------------------------------------------------------------------- /python_scripts/hfs/fastunicode.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/hfs/fastunicode.pyc -------------------------------------------------------------------------------- /python_scripts/hfs/hfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/hfs/hfs.py -------------------------------------------------------------------------------- /python_scripts/hfs/hfs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/hfs/hfs.pyc -------------------------------------------------------------------------------- /python_scripts/hfs/journal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/hfs/journal.py -------------------------------------------------------------------------------- /python_scripts/hfs/journal.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/hfs/journal.pyc -------------------------------------------------------------------------------- /python_scripts/hfs/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/hfs/structs.py -------------------------------------------------------------------------------- /python_scripts/hfs/structs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/hfs/structs.pyc -------------------------------------------------------------------------------- /python_scripts/icloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/icloud/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/icloud/backup.py -------------------------------------------------------------------------------- /python_scripts/icloud/chunkserver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/icloud/chunkserver.proto -------------------------------------------------------------------------------- /python_scripts/icloud/chunkserver_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/icloud/chunkserver_pb2.py -------------------------------------------------------------------------------- /python_scripts/icloud/icloud.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/icloud/icloud.proto -------------------------------------------------------------------------------- /python_scripts/icloud/icloud_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/icloud/icloud_pb2.py -------------------------------------------------------------------------------- /python_scripts/icloud/pbuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/icloud/pbuf.py -------------------------------------------------------------------------------- /python_scripts/ios_examiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/ios_examiner.py -------------------------------------------------------------------------------- /python_scripts/kernel_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/kernel_patcher.py -------------------------------------------------------------------------------- /python_scripts/keychain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keychain/__init__.py -------------------------------------------------------------------------------- /python_scripts/keychain/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keychain/__init__.pyc -------------------------------------------------------------------------------- /python_scripts/keychain/keychain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keychain/keychain.py -------------------------------------------------------------------------------- /python_scripts/keychain/keychain.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keychain/keychain.pyc -------------------------------------------------------------------------------- /python_scripts/keychain/keychain3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keychain/keychain3.py -------------------------------------------------------------------------------- /python_scripts/keychain/keychain3.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keychain/keychain3.pyc -------------------------------------------------------------------------------- /python_scripts/keychain/keychain4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keychain/keychain4.py -------------------------------------------------------------------------------- /python_scripts/keychain/keychain4.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keychain/keychain4.pyc -------------------------------------------------------------------------------- /python_scripts/keychain/managedconfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keychain/managedconfiguration.py -------------------------------------------------------------------------------- /python_scripts/keychain/managedconfiguration.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keychain/managedconfiguration.pyc -------------------------------------------------------------------------------- /python_scripts/keychain/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keychain/store.py -------------------------------------------------------------------------------- /python_scripts/keychain/store.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keychain/store.pyc -------------------------------------------------------------------------------- /python_scripts/keychain_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keychain_tool.py -------------------------------------------------------------------------------- /python_scripts/keystore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/keystore/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keystore/__init__.pyc -------------------------------------------------------------------------------- /python_scripts/keystore/effaceable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keystore/effaceable.py -------------------------------------------------------------------------------- /python_scripts/keystore/effaceable.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keystore/effaceable.pyc -------------------------------------------------------------------------------- /python_scripts/keystore/keybag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keystore/keybag.py -------------------------------------------------------------------------------- /python_scripts/keystore/keybag.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/keystore/keybag.pyc -------------------------------------------------------------------------------- /python_scripts/nand/IOFlashPartitionScheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/IOFlashPartitionScheme.py -------------------------------------------------------------------------------- /python_scripts/nand/IOFlashPartitionScheme.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/IOFlashPartitionScheme.pyc -------------------------------------------------------------------------------- /python_scripts/nand/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/nand/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/__init__.pyc -------------------------------------------------------------------------------- /python_scripts/nand/carver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/carver.py -------------------------------------------------------------------------------- /python_scripts/nand/carver.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/carver.pyc -------------------------------------------------------------------------------- /python_scripts/nand/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/image.py -------------------------------------------------------------------------------- /python_scripts/nand/image.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/image.pyc -------------------------------------------------------------------------------- /python_scripts/nand/legacyftl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/legacyftl.py -------------------------------------------------------------------------------- /python_scripts/nand/legacyftl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/legacyftl.pyc -------------------------------------------------------------------------------- /python_scripts/nand/nand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/nand.py -------------------------------------------------------------------------------- /python_scripts/nand/nand.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/nand.pyc -------------------------------------------------------------------------------- /python_scripts/nand/partition_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/partition_tables.py -------------------------------------------------------------------------------- /python_scripts/nand/partition_tables.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/partition_tables.pyc -------------------------------------------------------------------------------- /python_scripts/nand/ppn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/ppn.py -------------------------------------------------------------------------------- /python_scripts/nand/ppn.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/ppn.pyc -------------------------------------------------------------------------------- /python_scripts/nand/ppn_carver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/ppn_carver.py -------------------------------------------------------------------------------- /python_scripts/nand/ppn_carver.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/ppn_carver.pyc -------------------------------------------------------------------------------- /python_scripts/nand/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/remote.py -------------------------------------------------------------------------------- /python_scripts/nand/remote.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/remote.pyc -------------------------------------------------------------------------------- /python_scripts/nand/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/structs.py -------------------------------------------------------------------------------- /python_scripts/nand/structs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/structs.pyc -------------------------------------------------------------------------------- /python_scripts/nand/vfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/vfl.py -------------------------------------------------------------------------------- /python_scripts/nand/vfl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/vfl.pyc -------------------------------------------------------------------------------- /python_scripts/nand/vsvfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/vsvfl.py -------------------------------------------------------------------------------- /python_scripts/nand/vsvfl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/vsvfl.pyc -------------------------------------------------------------------------------- /python_scripts/nand/yaftl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/yaftl.py -------------------------------------------------------------------------------- /python_scripts/nand/yaftl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/nand/yaftl.pyc -------------------------------------------------------------------------------- /python_scripts/usbmux/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/usbmux/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/usbmux/__init__.pyc -------------------------------------------------------------------------------- /python_scripts/usbmux/tcprelay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/usbmux/tcprelay.py -------------------------------------------------------------------------------- /python_scripts/usbmux/usbmux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/usbmux/usbmux.py -------------------------------------------------------------------------------- /python_scripts/usbmux/usbmux.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/usbmux/usbmux.pyc -------------------------------------------------------------------------------- /python_scripts/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/__init__.py -------------------------------------------------------------------------------- /python_scripts/util/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/__init__.pyc -------------------------------------------------------------------------------- /python_scripts/util/asciitables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/asciitables.py -------------------------------------------------------------------------------- /python_scripts/util/asciitables.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/asciitables.pyc -------------------------------------------------------------------------------- /python_scripts/util/bdev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/bdev.py -------------------------------------------------------------------------------- /python_scripts/util/bdev.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/bdev.pyc -------------------------------------------------------------------------------- /python_scripts/util/bplist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/bplist.py -------------------------------------------------------------------------------- /python_scripts/util/bplist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/bplist.pyc -------------------------------------------------------------------------------- /python_scripts/util/bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/bruteforce.py -------------------------------------------------------------------------------- /python_scripts/util/bruteforce.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/bruteforce.pyc -------------------------------------------------------------------------------- /python_scripts/util/cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/cert.py -------------------------------------------------------------------------------- /python_scripts/util/cert.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/cert.pyc -------------------------------------------------------------------------------- /python_scripts/util/lzss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/lzss.py -------------------------------------------------------------------------------- /python_scripts/util/lzss.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/lzss.pyc -------------------------------------------------------------------------------- /python_scripts/util/ramdiskclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/ramdiskclient.py -------------------------------------------------------------------------------- /python_scripts/util/ramdiskclient.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/ramdiskclient.pyc -------------------------------------------------------------------------------- /python_scripts/util/tlv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/tlv.py -------------------------------------------------------------------------------- /python_scripts/util/tlv.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/util/tlv.pyc -------------------------------------------------------------------------------- /python_scripts/windows_redsn0w_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/windows_redsn0w_keys.py -------------------------------------------------------------------------------- /python_scripts/wordlist.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/python_scripts/wordlist.dict -------------------------------------------------------------------------------- /ramdisk_tools/AppleEffaceableStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/AppleEffaceableStorage.c -------------------------------------------------------------------------------- /ramdisk_tools/AppleEffaceableStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/AppleEffaceableStorage.h -------------------------------------------------------------------------------- /ramdisk_tools/AppleKeyStore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/AppleKeyStore.c -------------------------------------------------------------------------------- /ramdisk_tools/AppleKeyStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/AppleKeyStore.h -------------------------------------------------------------------------------- /ramdisk_tools/AppleKeyStore_kdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/AppleKeyStore_kdf.c -------------------------------------------------------------------------------- /ramdisk_tools/IOAESAccelerator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/IOAESAccelerator.c -------------------------------------------------------------------------------- /ramdisk_tools/IOAESAccelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/IOAESAccelerator.h -------------------------------------------------------------------------------- /ramdisk_tools/IOKit: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/IOKit.framework/Versions/Current/Headers -------------------------------------------------------------------------------- /ramdisk_tools/IOKit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/IOKit.c -------------------------------------------------------------------------------- /ramdisk_tools/IOKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/IOKit.h -------------------------------------------------------------------------------- /ramdisk_tools/IOUSBDeviceControllerLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/IOUSBDeviceControllerLib.h -------------------------------------------------------------------------------- /ramdisk_tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/Makefile -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/key_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/key_wrap.c -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/key_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/key_wrap.h -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/pbkdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/pbkdf2.c -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/pbkdf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/pbkdf2.h -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/rijndael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/rijndael.c -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/rijndael.h -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/sha1.c -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/sha1.h -------------------------------------------------------------------------------- /ramdisk_tools/device_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/device_info.c -------------------------------------------------------------------------------- /ramdisk_tools/device_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/device_info.h -------------------------------------------------------------------------------- /ramdisk_tools/device_infos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/device_infos.c -------------------------------------------------------------------------------- /ramdisk_tools/dump_data_partition.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cat /dev/rdisk0s2s1 | netcat -l -p 1234 4 | -------------------------------------------------------------------------------- /ramdisk_tools/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/entitlements.plist -------------------------------------------------------------------------------- /ramdisk_tools/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/image.c -------------------------------------------------------------------------------- /ramdisk_tools/image.h: -------------------------------------------------------------------------------- 1 | int drawImage(const char* pngFileName); 2 | -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/IOFlashPartitionScheme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/IOFlashPartitionScheme.c -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/IOFlashPartitionScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/IOFlashPartitionScheme.h -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/Makefile -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/externalMethod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/externalMethod.S -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/externalMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/externalMethod.h -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/ioflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/ioflash.c -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/ioflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/ioflash.h -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/ioflash_kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/ioflash_kernel.c -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/ioflashstoragekit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/ioflashstoragekit.c -------------------------------------------------------------------------------- /ramdisk_tools/kernel_patcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/kernel_patcher.c -------------------------------------------------------------------------------- /ramdisk_tools/keystore_device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/keystore_device.xml -------------------------------------------------------------------------------- /ramdisk_tools/plist_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/plist_server.c -------------------------------------------------------------------------------- /ramdisk_tools/plist_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/plist_server.h -------------------------------------------------------------------------------- /ramdisk_tools/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/registry.c -------------------------------------------------------------------------------- /ramdisk_tools/registry.h: -------------------------------------------------------------------------------- 1 | void get_device_infos(CFMutableDictionaryRef out); -------------------------------------------------------------------------------- /ramdisk_tools/remote_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/remote_functions.c -------------------------------------------------------------------------------- /ramdisk_tools/remote_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/remote_functions.h -------------------------------------------------------------------------------- /ramdisk_tools/restored_external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/restored_external.c -------------------------------------------------------------------------------- /ramdisk_tools/scripts/mount_partitions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/scripts/mount_partitions.sh -------------------------------------------------------------------------------- /ramdisk_tools/shsh_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/shsh_dump.c -------------------------------------------------------------------------------- /ramdisk_tools/systemkb_bruteforce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/systemkb_bruteforce.c -------------------------------------------------------------------------------- /ramdisk_tools/tfp0.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/tfp0.plist -------------------------------------------------------------------------------- /ramdisk_tools/ttbthingy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/ttbthingy.c -------------------------------------------------------------------------------- /ramdisk_tools/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/util.c -------------------------------------------------------------------------------- /ramdisk_tools/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ramdisk_tools/util.h -------------------------------------------------------------------------------- /ssh.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/ssh.tar.gz -------------------------------------------------------------------------------- /tcprelay.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/tcprelay.bat -------------------------------------------------------------------------------- /tcprelay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/tcprelay.sh -------------------------------------------------------------------------------- /tmp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/tmp/.DS_Store -------------------------------------------------------------------------------- /tmp/keychain.keys.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/tmp/keychain.keys.plist -------------------------------------------------------------------------------- /usbmuxd-python-client/relay.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/usbmuxd-python-client/relay.bat -------------------------------------------------------------------------------- /usbmuxd-python-client/tcprelay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/usbmuxd-python-client/tcprelay.py -------------------------------------------------------------------------------- /usbmuxd-python-client/usbmux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/usbmuxd-python-client/usbmux.py -------------------------------------------------------------------------------- /usbmuxd-python-client/usbmux.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/as0ler/iphone-dataprotection/HEAD/usbmuxd-python-client/usbmux.pyc --------------------------------------------------------------------------------