├── CREDITS.txt ├── README.md ├── README.txt ├── boot.bat ├── boot.py ├── data ├── bin │ ├── ioreg │ └── sysctl ├── boot │ └── .kernels_and_ramdisks ├── ipsw │ └── .ipsws ├── libncurses.5.dylib └── ssh.tar.gz ├── dump_data_partition.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_passwd.py ├── backup_tool.py ├── backups │ ├── __init__.py │ ├── backup10.py │ ├── backup3.py │ └── backup4.py ├── crypto │ ├── PBKDF2.py │ ├── __init__.py │ ├── aes.py │ ├── aes_ctypes.py │ ├── aeswrap.py │ ├── curve25519.py │ └── gcm.py ├── demo_backup_keychain.py ├── demo_bruteforce.py ├── demo_bruteforce.py.original ├── demo_escrow.py ├── emf_decrypter.py ├── emf_undelete.py ├── firmware │ ├── __init__.py │ ├── img2.py │ ├── img3.py │ └── scfg.py ├── hfs │ ├── __init__.py │ ├── btree.py │ ├── emf.py │ ├── fastunicode.py │ ├── hfs.py │ ├── journal.py │ └── structs.py ├── 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 │ ├── keychain.py │ ├── keychain3.py │ ├── keychain4.py │ ├── managedconfiguration.py │ └── store.py ├── keychain_tool.py ├── keystore │ ├── __init__.py │ ├── effaceable.py │ └── keybag.py ├── nand │ ├── IOFlashPartitionScheme.py │ ├── __init__.py │ ├── carver.py │ ├── image.py │ ├── legacyftl.py │ ├── nand.py │ ├── partition_tables.py │ ├── ppn.py │ ├── ppn_carver.py │ ├── remote.py │ ├── structs.py │ ├── vfl.py │ ├── vsvfl.py │ └── yaftl.py ├── usbmux │ ├── __init__.py │ ├── tcprelay.py │ └── usbmux.py ├── util │ ├── __init__.py │ ├── asciitables.py │ ├── bdev.py │ ├── bplist.py │ ├── bruteforce.py │ ├── cert.py │ ├── lzss.py │ ├── ramdiskclient.py │ └── tlv.py ├── windows_redsn0w_keys.py └── wordlist.dict ├── ramdisk_tools ├── AppleEffaceableStorage.c ├── AppleEffaceableStorage.h ├── AppleKeyStore.c ├── AppleKeyStore.h ├── AppleKeyStore_kdf.c ├── IOAESAccelerator.c ├── IOAESAccelerator.h ├── 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 ├── entitlements.plist ├── ioflash │ ├── IOFlashPartitionScheme.c │ ├── IOFlashPartitionScheme.h │ ├── Makefile │ ├── externalMethod.S │ ├── externalMethod.h │ ├── ioflash.c │ ├── ioflash.h │ ├── ioflash_kernel.c │ └── ioflashstoragekit.c ├── kernel_patcher.c ├── 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 ├── ttbthingy.c ├── util.c └── util.h ├── tcprelay.bat └── tcprelay.sh /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/README.txt -------------------------------------------------------------------------------- /boot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/boot.bat -------------------------------------------------------------------------------- /boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/boot.py -------------------------------------------------------------------------------- /data/bin/ioreg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/data/bin/ioreg -------------------------------------------------------------------------------- /data/bin/sysctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/data/bin/sysctl -------------------------------------------------------------------------------- /data/boot/.kernels_and_ramdisks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/ipsw/.ipsws: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/libncurses.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/data/libncurses.5.dylib -------------------------------------------------------------------------------- /data/ssh.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/data/ssh.tar.gz -------------------------------------------------------------------------------- /dump_data_partition.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/dump_data_partition.sh -------------------------------------------------------------------------------- /old/emf_decrypter/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/BUILD -------------------------------------------------------------------------------- /old/emf_decrypter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/CMakeLists.txt -------------------------------------------------------------------------------- /old/emf_decrypter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/LICENSE -------------------------------------------------------------------------------- /old/emf_decrypter/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/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/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/common/abstractfile.c -------------------------------------------------------------------------------- /old/emf_decrypter/common/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/common/base64.c -------------------------------------------------------------------------------- /old/emf_decrypter/emf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/emf/CMakeLists.txt -------------------------------------------------------------------------------- /old/emf_decrypter/emf/emf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/emf/emf.h -------------------------------------------------------------------------------- /old/emf_decrypter/emf/emf_decrypter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/emf/emf_decrypter.c -------------------------------------------------------------------------------- /old/emf_decrypter/emf/emf_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/emf/emf_init.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/CMakeLists.txt -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/btree.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/catalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/catalog.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/extents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/extents.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/fastunicodecompare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/fastunicodecompare.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/flatfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/flatfile.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/hfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/hfs.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/hfscompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/hfscompress.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/hfslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/hfslib.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/rawfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/rawfile.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/utility.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/volume.c -------------------------------------------------------------------------------- /old/emf_decrypter/hfs/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/hfs/xattr.c -------------------------------------------------------------------------------- /old/emf_decrypter/includes/abstractfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/includes/abstractfile.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/includes/common.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/dmg/dmg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/includes/dmg/dmg.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/dmg/dmgfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/includes/dmg/dmgfile.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/dmg/dmglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/includes/dmg/dmglib.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/dmg/filevault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/includes/dmg/filevault.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/hfs/hfscompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/includes/hfs/hfscompress.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/hfs/hfslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/includes/hfs/hfslib.h -------------------------------------------------------------------------------- /old/emf_decrypter/includes/hfs/hfsplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/emf_decrypter/includes/hfs/hfsplus.h -------------------------------------------------------------------------------- /old/img3fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/img3fs/Makefile -------------------------------------------------------------------------------- /old/img3fs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/img3fs/README -------------------------------------------------------------------------------- /old/img3fs/img3fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/old/img3fs/img3fs.c -------------------------------------------------------------------------------- /python_scripts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/README.txt -------------------------------------------------------------------------------- /python_scripts/backup_passwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/backup_passwd.py -------------------------------------------------------------------------------- /python_scripts/backup_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/backup_tool.py -------------------------------------------------------------------------------- /python_scripts/backups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/backups/backup10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/backups/backup10.py -------------------------------------------------------------------------------- /python_scripts/backups/backup3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/backups/backup3.py -------------------------------------------------------------------------------- /python_scripts/backups/backup4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/backups/backup4.py -------------------------------------------------------------------------------- /python_scripts/crypto/PBKDF2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/crypto/PBKDF2.py -------------------------------------------------------------------------------- /python_scripts/crypto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/crypto/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/crypto/aes.py -------------------------------------------------------------------------------- /python_scripts/crypto/aes_ctypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/crypto/aes_ctypes.py -------------------------------------------------------------------------------- /python_scripts/crypto/aeswrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/crypto/aeswrap.py -------------------------------------------------------------------------------- /python_scripts/crypto/curve25519.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/crypto/curve25519.py -------------------------------------------------------------------------------- /python_scripts/crypto/gcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/crypto/gcm.py -------------------------------------------------------------------------------- /python_scripts/demo_backup_keychain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/demo_backup_keychain.py -------------------------------------------------------------------------------- /python_scripts/demo_bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/demo_bruteforce.py -------------------------------------------------------------------------------- /python_scripts/demo_bruteforce.py.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/demo_bruteforce.py.original -------------------------------------------------------------------------------- /python_scripts/demo_escrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/demo_escrow.py -------------------------------------------------------------------------------- /python_scripts/emf_decrypter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/emf_decrypter.py -------------------------------------------------------------------------------- /python_scripts/emf_undelete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/emf_undelete.py -------------------------------------------------------------------------------- /python_scripts/firmware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/firmware/img2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/firmware/img2.py -------------------------------------------------------------------------------- /python_scripts/firmware/img3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/firmware/img3.py -------------------------------------------------------------------------------- /python_scripts/firmware/scfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/firmware/scfg.py -------------------------------------------------------------------------------- /python_scripts/hfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/hfs/btree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/hfs/btree.py -------------------------------------------------------------------------------- /python_scripts/hfs/emf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/hfs/emf.py -------------------------------------------------------------------------------- /python_scripts/hfs/fastunicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/hfs/fastunicode.py -------------------------------------------------------------------------------- /python_scripts/hfs/hfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/hfs/hfs.py -------------------------------------------------------------------------------- /python_scripts/hfs/journal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/hfs/journal.py -------------------------------------------------------------------------------- /python_scripts/hfs/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/hfs/structs.py -------------------------------------------------------------------------------- /python_scripts/icloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/icloud/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/icloud/backup.py -------------------------------------------------------------------------------- /python_scripts/icloud/chunkserver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/icloud/chunkserver.proto -------------------------------------------------------------------------------- /python_scripts/icloud/chunkserver_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/icloud/chunkserver_pb2.py -------------------------------------------------------------------------------- /python_scripts/icloud/icloud.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/icloud/icloud.proto -------------------------------------------------------------------------------- /python_scripts/icloud/icloud_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/icloud/icloud_pb2.py -------------------------------------------------------------------------------- /python_scripts/icloud/pbuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/icloud/pbuf.py -------------------------------------------------------------------------------- /python_scripts/ios_examiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/ios_examiner.py -------------------------------------------------------------------------------- /python_scripts/kernel_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/kernel_patcher.py -------------------------------------------------------------------------------- /python_scripts/keychain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/keychain/__init__.py -------------------------------------------------------------------------------- /python_scripts/keychain/keychain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/keychain/keychain.py -------------------------------------------------------------------------------- /python_scripts/keychain/keychain3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/keychain/keychain3.py -------------------------------------------------------------------------------- /python_scripts/keychain/keychain4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/keychain/keychain4.py -------------------------------------------------------------------------------- /python_scripts/keychain/managedconfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/keychain/managedconfiguration.py -------------------------------------------------------------------------------- /python_scripts/keychain/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/keychain/store.py -------------------------------------------------------------------------------- /python_scripts/keychain_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/keychain_tool.py -------------------------------------------------------------------------------- /python_scripts/keystore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/keystore/effaceable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/keystore/effaceable.py -------------------------------------------------------------------------------- /python_scripts/keystore/keybag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/keystore/keybag.py -------------------------------------------------------------------------------- /python_scripts/nand/IOFlashPartitionScheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/nand/IOFlashPartitionScheme.py -------------------------------------------------------------------------------- /python_scripts/nand/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/nand/carver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/nand/carver.py -------------------------------------------------------------------------------- /python_scripts/nand/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/nand/image.py -------------------------------------------------------------------------------- /python_scripts/nand/legacyftl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/nand/legacyftl.py -------------------------------------------------------------------------------- /python_scripts/nand/nand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/nand/nand.py -------------------------------------------------------------------------------- /python_scripts/nand/partition_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/nand/partition_tables.py -------------------------------------------------------------------------------- /python_scripts/nand/ppn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/nand/ppn.py -------------------------------------------------------------------------------- /python_scripts/nand/ppn_carver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/nand/ppn_carver.py -------------------------------------------------------------------------------- /python_scripts/nand/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/nand/remote.py -------------------------------------------------------------------------------- /python_scripts/nand/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/nand/structs.py -------------------------------------------------------------------------------- /python_scripts/nand/vfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/nand/vfl.py -------------------------------------------------------------------------------- /python_scripts/nand/vsvfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/nand/vsvfl.py -------------------------------------------------------------------------------- /python_scripts/nand/yaftl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/nand/yaftl.py -------------------------------------------------------------------------------- /python_scripts/usbmux/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/usbmux/tcprelay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/usbmux/tcprelay.py -------------------------------------------------------------------------------- /python_scripts/usbmux/usbmux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/usbmux/usbmux.py -------------------------------------------------------------------------------- /python_scripts/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/util/__init__.py -------------------------------------------------------------------------------- /python_scripts/util/asciitables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/util/asciitables.py -------------------------------------------------------------------------------- /python_scripts/util/bdev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/util/bdev.py -------------------------------------------------------------------------------- /python_scripts/util/bplist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/util/bplist.py -------------------------------------------------------------------------------- /python_scripts/util/bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/util/bruteforce.py -------------------------------------------------------------------------------- /python_scripts/util/cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/util/cert.py -------------------------------------------------------------------------------- /python_scripts/util/lzss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/util/lzss.py -------------------------------------------------------------------------------- /python_scripts/util/ramdiskclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/util/ramdiskclient.py -------------------------------------------------------------------------------- /python_scripts/util/tlv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/util/tlv.py -------------------------------------------------------------------------------- /python_scripts/windows_redsn0w_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/windows_redsn0w_keys.py -------------------------------------------------------------------------------- /python_scripts/wordlist.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/python_scripts/wordlist.dict -------------------------------------------------------------------------------- /ramdisk_tools/AppleEffaceableStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/AppleEffaceableStorage.c -------------------------------------------------------------------------------- /ramdisk_tools/AppleEffaceableStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/AppleEffaceableStorage.h -------------------------------------------------------------------------------- /ramdisk_tools/AppleKeyStore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/AppleKeyStore.c -------------------------------------------------------------------------------- /ramdisk_tools/AppleKeyStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/AppleKeyStore.h -------------------------------------------------------------------------------- /ramdisk_tools/AppleKeyStore_kdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/AppleKeyStore_kdf.c -------------------------------------------------------------------------------- /ramdisk_tools/IOAESAccelerator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/IOAESAccelerator.c -------------------------------------------------------------------------------- /ramdisk_tools/IOAESAccelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/IOAESAccelerator.h -------------------------------------------------------------------------------- /ramdisk_tools/IOKit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/IOKit.c -------------------------------------------------------------------------------- /ramdisk_tools/IOKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/IOKit.h -------------------------------------------------------------------------------- /ramdisk_tools/IOUSBDeviceControllerLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/IOUSBDeviceControllerLib.h -------------------------------------------------------------------------------- /ramdisk_tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/Makefile -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/key_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/key_wrap.c -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/key_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/key_wrap.h -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/pbkdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/pbkdf2.c -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/pbkdf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/pbkdf2.h -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/rijndael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/rijndael.c -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/rijndael.h -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/sha1.c -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/bsdcrypto/sha1.h -------------------------------------------------------------------------------- /ramdisk_tools/device_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/device_info.c -------------------------------------------------------------------------------- /ramdisk_tools/device_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/device_info.h -------------------------------------------------------------------------------- /ramdisk_tools/device_infos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/device_infos.c -------------------------------------------------------------------------------- /ramdisk_tools/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/entitlements.plist -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/IOFlashPartitionScheme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/IOFlashPartitionScheme.c -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/IOFlashPartitionScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/IOFlashPartitionScheme.h -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/Makefile -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/externalMethod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/externalMethod.S -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/externalMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/externalMethod.h -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/ioflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/ioflash.c -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/ioflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/ioflash.h -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/ioflash_kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/ioflash_kernel.c -------------------------------------------------------------------------------- /ramdisk_tools/ioflash/ioflashstoragekit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/ioflash/ioflashstoragekit.c -------------------------------------------------------------------------------- /ramdisk_tools/kernel_patcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/kernel_patcher.c -------------------------------------------------------------------------------- /ramdisk_tools/plist_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/plist_server.c -------------------------------------------------------------------------------- /ramdisk_tools/plist_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/plist_server.h -------------------------------------------------------------------------------- /ramdisk_tools/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/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/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/remote_functions.c -------------------------------------------------------------------------------- /ramdisk_tools/remote_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/remote_functions.h -------------------------------------------------------------------------------- /ramdisk_tools/restored_external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/restored_external.c -------------------------------------------------------------------------------- /ramdisk_tools/scripts/mount_partitions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/scripts/mount_partitions.sh -------------------------------------------------------------------------------- /ramdisk_tools/shsh_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/shsh_dump.c -------------------------------------------------------------------------------- /ramdisk_tools/systemkb_bruteforce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/systemkb_bruteforce.c -------------------------------------------------------------------------------- /ramdisk_tools/ttbthingy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/ttbthingy.c -------------------------------------------------------------------------------- /ramdisk_tools/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/util.c -------------------------------------------------------------------------------- /ramdisk_tools/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/ramdisk_tools/util.h -------------------------------------------------------------------------------- /tcprelay.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/tcprelay.bat -------------------------------------------------------------------------------- /tcprelay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinosec/iphone-dataprotection/HEAD/tcprelay.sh --------------------------------------------------------------------------------