├── CREDITS.txt ├── Keys.plist ├── README.txt ├── 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 ├── python_scripts ├── README.txt ├── backup_tool.py ├── backups │ ├── __init__.py │ ├── backup3.py │ └── backup4.py ├── crypto │ ├── PBKDF2.py │ ├── __init__.py │ ├── aes.py │ ├── aeswrap.py │ ├── curve25519.py │ └── gcm.py ├── demo_backup_keychain.py ├── demo_bruteforce.py ├── demo_escrow.py ├── emf_decrypter.py ├── emf_undelete.py ├── hfs │ ├── __init__.py │ ├── btree.py │ ├── emf.py │ ├── hfs.py │ ├── journal.py │ └── structs.py ├── kernel_patcher.py ├── keychain │ ├── __init__.py │ ├── keychain.py │ ├── keychain3.py │ ├── keychain4.py │ ├── managedconfiguration.py │ └── store.py ├── keychain_tool.py ├── keystore │ ├── __init__.py │ └── keybag.py ├── util │ ├── __init__.py │ ├── bplist.py │ ├── cert.py │ ├── lzss.py │ ├── ramdiskclient.py │ └── tlv.py └── windows_redsn0w_keys.py ├── 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 ├── dump_data_partition.sh ├── image.c ├── image.h ├── 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 ├── systemkb_bruteforce.c ├── util.c └── util.h ├── tcprelay.sh └── usbmuxd-python-client ├── relay.bat ├── tcprelay.py └── usbmux.py /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /Keys.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/Keys.plist -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- 1 | See http://code.google.com/p/iphone-dataprotection/wiki/README 2 | -------------------------------------------------------------------------------- /dump_data_partition.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/dump_data_partition.sh -------------------------------------------------------------------------------- /emf_decrypter/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/BUILD -------------------------------------------------------------------------------- /emf_decrypter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/CMakeLists.txt -------------------------------------------------------------------------------- /emf_decrypter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/LICENSE -------------------------------------------------------------------------------- /emf_decrypter/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-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/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/common/abstractfile.c -------------------------------------------------------------------------------- /emf_decrypter/common/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/common/base64.c -------------------------------------------------------------------------------- /emf_decrypter/emf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/emf/CMakeLists.txt -------------------------------------------------------------------------------- /emf_decrypter/emf/emf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/emf/emf.h -------------------------------------------------------------------------------- /emf_decrypter/emf/emf_decrypter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/emf/emf_decrypter.c -------------------------------------------------------------------------------- /emf_decrypter/emf/emf_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/emf/emf_init.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/hfs/CMakeLists.txt -------------------------------------------------------------------------------- /emf_decrypter/hfs/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/hfs/btree.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/catalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/hfs/catalog.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/extents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/hfs/extents.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/fastunicodecompare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/hfs/fastunicodecompare.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/flatfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/hfs/flatfile.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/hfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/hfs/hfs.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/hfscompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/hfs/hfscompress.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/hfslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/hfs/hfslib.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/rawfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/hfs/rawfile.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/hfs/utility.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/hfs/volume.c -------------------------------------------------------------------------------- /emf_decrypter/hfs/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/hfs/xattr.c -------------------------------------------------------------------------------- /emf_decrypter/includes/abstractfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/includes/abstractfile.h -------------------------------------------------------------------------------- /emf_decrypter/includes/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/includes/common.h -------------------------------------------------------------------------------- /emf_decrypter/includes/dmg/dmg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/includes/dmg/dmg.h -------------------------------------------------------------------------------- /emf_decrypter/includes/dmg/dmgfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/includes/dmg/dmgfile.h -------------------------------------------------------------------------------- /emf_decrypter/includes/dmg/dmglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/includes/dmg/dmglib.h -------------------------------------------------------------------------------- /emf_decrypter/includes/dmg/filevault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/includes/dmg/filevault.h -------------------------------------------------------------------------------- /emf_decrypter/includes/hfs/hfscompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/includes/hfs/hfscompress.h -------------------------------------------------------------------------------- /emf_decrypter/includes/hfs/hfslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/includes/hfs/hfslib.h -------------------------------------------------------------------------------- /emf_decrypter/includes/hfs/hfsplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/emf_decrypter/includes/hfs/hfsplus.h -------------------------------------------------------------------------------- /img3fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/img3fs/Makefile -------------------------------------------------------------------------------- /img3fs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/img3fs/README -------------------------------------------------------------------------------- /img3fs/img3fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/img3fs/img3fs.c -------------------------------------------------------------------------------- /python_scripts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/README.txt -------------------------------------------------------------------------------- /python_scripts/backup_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/backup_tool.py -------------------------------------------------------------------------------- /python_scripts/backups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/backups/backup3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/backups/backup3.py -------------------------------------------------------------------------------- /python_scripts/backups/backup4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/backups/backup4.py -------------------------------------------------------------------------------- /python_scripts/crypto/PBKDF2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/crypto/PBKDF2.py -------------------------------------------------------------------------------- /python_scripts/crypto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/crypto/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/crypto/aes.py -------------------------------------------------------------------------------- /python_scripts/crypto/aeswrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/crypto/aeswrap.py -------------------------------------------------------------------------------- /python_scripts/crypto/curve25519.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/crypto/curve25519.py -------------------------------------------------------------------------------- /python_scripts/crypto/gcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/crypto/gcm.py -------------------------------------------------------------------------------- /python_scripts/demo_backup_keychain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/demo_backup_keychain.py -------------------------------------------------------------------------------- /python_scripts/demo_bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/demo_bruteforce.py -------------------------------------------------------------------------------- /python_scripts/demo_escrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/demo_escrow.py -------------------------------------------------------------------------------- /python_scripts/emf_decrypter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/emf_decrypter.py -------------------------------------------------------------------------------- /python_scripts/emf_undelete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/emf_undelete.py -------------------------------------------------------------------------------- /python_scripts/hfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/hfs/btree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/hfs/btree.py -------------------------------------------------------------------------------- /python_scripts/hfs/emf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/hfs/emf.py -------------------------------------------------------------------------------- /python_scripts/hfs/hfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/hfs/hfs.py -------------------------------------------------------------------------------- /python_scripts/hfs/journal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/hfs/journal.py -------------------------------------------------------------------------------- /python_scripts/hfs/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/hfs/structs.py -------------------------------------------------------------------------------- /python_scripts/kernel_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/kernel_patcher.py -------------------------------------------------------------------------------- /python_scripts/keychain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/keychain/__init__.py -------------------------------------------------------------------------------- /python_scripts/keychain/keychain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/keychain/keychain.py -------------------------------------------------------------------------------- /python_scripts/keychain/keychain3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/keychain/keychain3.py -------------------------------------------------------------------------------- /python_scripts/keychain/keychain4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/keychain/keychain4.py -------------------------------------------------------------------------------- /python_scripts/keychain/managedconfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/keychain/managedconfiguration.py -------------------------------------------------------------------------------- /python_scripts/keychain/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/keychain/store.py -------------------------------------------------------------------------------- /python_scripts/keychain_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/keychain_tool.py -------------------------------------------------------------------------------- /python_scripts/keystore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_scripts/keystore/keybag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/keystore/keybag.py -------------------------------------------------------------------------------- /python_scripts/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/util/__init__.py -------------------------------------------------------------------------------- /python_scripts/util/bplist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/util/bplist.py -------------------------------------------------------------------------------- /python_scripts/util/cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/util/cert.py -------------------------------------------------------------------------------- /python_scripts/util/lzss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/util/lzss.py -------------------------------------------------------------------------------- /python_scripts/util/ramdiskclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/util/ramdiskclient.py -------------------------------------------------------------------------------- /python_scripts/util/tlv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/util/tlv.py -------------------------------------------------------------------------------- /python_scripts/windows_redsn0w_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/python_scripts/windows_redsn0w_keys.py -------------------------------------------------------------------------------- /ramdisk_tools/AppleEffaceableStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/AppleEffaceableStorage.c -------------------------------------------------------------------------------- /ramdisk_tools/AppleEffaceableStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/AppleEffaceableStorage.h -------------------------------------------------------------------------------- /ramdisk_tools/AppleKeyStore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/AppleKeyStore.c -------------------------------------------------------------------------------- /ramdisk_tools/AppleKeyStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/AppleKeyStore.h -------------------------------------------------------------------------------- /ramdisk_tools/AppleKeyStore_kdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/AppleKeyStore_kdf.c -------------------------------------------------------------------------------- /ramdisk_tools/IOAESAccelerator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/IOAESAccelerator.c -------------------------------------------------------------------------------- /ramdisk_tools/IOAESAccelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/IOAESAccelerator.h -------------------------------------------------------------------------------- /ramdisk_tools/IOKit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/IOKit.c -------------------------------------------------------------------------------- /ramdisk_tools/IOKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/IOKit.h -------------------------------------------------------------------------------- /ramdisk_tools/IOUSBDeviceControllerLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/IOUSBDeviceControllerLib.h -------------------------------------------------------------------------------- /ramdisk_tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/Makefile -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/key_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/bsdcrypto/key_wrap.c -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/key_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/bsdcrypto/key_wrap.h -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/pbkdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/bsdcrypto/pbkdf2.c -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/pbkdf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/bsdcrypto/pbkdf2.h -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/rijndael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/bsdcrypto/rijndael.c -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/bsdcrypto/rijndael.h -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/bsdcrypto/sha1.c -------------------------------------------------------------------------------- /ramdisk_tools/bsdcrypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/bsdcrypto/sha1.h -------------------------------------------------------------------------------- /ramdisk_tools/device_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/device_info.c -------------------------------------------------------------------------------- /ramdisk_tools/device_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/device_info.h -------------------------------------------------------------------------------- /ramdisk_tools/device_infos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-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/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/image.c -------------------------------------------------------------------------------- /ramdisk_tools/image.h: -------------------------------------------------------------------------------- 1 | int drawImage(const char* pngFileName); 2 | -------------------------------------------------------------------------------- /ramdisk_tools/keystore_device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/keystore_device.xml -------------------------------------------------------------------------------- /ramdisk_tools/plist_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/plist_server.c -------------------------------------------------------------------------------- /ramdisk_tools/plist_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/plist_server.h -------------------------------------------------------------------------------- /ramdisk_tools/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-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/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/remote_functions.c -------------------------------------------------------------------------------- /ramdisk_tools/remote_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/remote_functions.h -------------------------------------------------------------------------------- /ramdisk_tools/restored_external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/restored_external.c -------------------------------------------------------------------------------- /ramdisk_tools/scripts/mount_partitions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/scripts/mount_partitions.sh -------------------------------------------------------------------------------- /ramdisk_tools/systemkb_bruteforce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/systemkb_bruteforce.c -------------------------------------------------------------------------------- /ramdisk_tools/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/util.c -------------------------------------------------------------------------------- /ramdisk_tools/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/ramdisk_tools/util.h -------------------------------------------------------------------------------- /tcprelay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/tcprelay.sh -------------------------------------------------------------------------------- /usbmuxd-python-client/relay.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/usbmuxd-python-client/relay.bat -------------------------------------------------------------------------------- /usbmuxd-python-client/tcprelay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/usbmuxd-python-client/tcprelay.py -------------------------------------------------------------------------------- /usbmuxd-python-client/usbmux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bored-engineer/iOS-DataProtection/HEAD/usbmuxd-python-client/usbmux.py --------------------------------------------------------------------------------