├── .gitattributes ├── .gitignore ├── CREDITS.txt ├── LICENSE.txt ├── README.md ├── pymobiledevice ├── __init__.py ├── afc.py ├── apis.py ├── apps.py ├── ca.py ├── diagnostics_relay.py ├── file_relay.py ├── house_arrest.py ├── installation_proxy.py ├── lockdown.py ├── mobile_config.py ├── mobilebackup.py ├── mobilebackup2.py ├── notification_proxy.py ├── pcapd.py ├── plist_service.py ├── sbservices.py ├── screenshotr.py ├── syslog.py ├── usbmux │ ├── __init__.py │ ├── tcprelay.py │ └── usbmux.py ├── util │ ├── __init__.py │ ├── asciitables.py │ ├── bdev.py │ ├── bpatch.py │ ├── bplist.py │ ├── ccl_bplist.py │ ├── cert.py │ ├── cpio.py │ └── lzss.py └── version.py ├── requirements.txt ├── setup.py └── test ├── __init__.py ├── afc_test.py ├── crashreportcopymobile_test.py ├── diagnostics_relay_test.py ├── house_arrest_test.py ├── installation_proxy_test.py ├── listdevice_test.py ├── screenshotr_test.py └── syslog_relay_test.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/README.md -------------------------------------------------------------------------------- /pymobiledevice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymobiledevice/afc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/afc.py -------------------------------------------------------------------------------- /pymobiledevice/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/apis.py -------------------------------------------------------------------------------- /pymobiledevice/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/apps.py -------------------------------------------------------------------------------- /pymobiledevice/ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/ca.py -------------------------------------------------------------------------------- /pymobiledevice/diagnostics_relay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/diagnostics_relay.py -------------------------------------------------------------------------------- /pymobiledevice/file_relay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/file_relay.py -------------------------------------------------------------------------------- /pymobiledevice/house_arrest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/house_arrest.py -------------------------------------------------------------------------------- /pymobiledevice/installation_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/installation_proxy.py -------------------------------------------------------------------------------- /pymobiledevice/lockdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/lockdown.py -------------------------------------------------------------------------------- /pymobiledevice/mobile_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/mobile_config.py -------------------------------------------------------------------------------- /pymobiledevice/mobilebackup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/mobilebackup.py -------------------------------------------------------------------------------- /pymobiledevice/mobilebackup2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/mobilebackup2.py -------------------------------------------------------------------------------- /pymobiledevice/notification_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/notification_proxy.py -------------------------------------------------------------------------------- /pymobiledevice/pcapd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/pcapd.py -------------------------------------------------------------------------------- /pymobiledevice/plist_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/plist_service.py -------------------------------------------------------------------------------- /pymobiledevice/sbservices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/sbservices.py -------------------------------------------------------------------------------- /pymobiledevice/screenshotr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/screenshotr.py -------------------------------------------------------------------------------- /pymobiledevice/syslog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/syslog.py -------------------------------------------------------------------------------- /pymobiledevice/usbmux/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymobiledevice/usbmux/tcprelay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/usbmux/tcprelay.py -------------------------------------------------------------------------------- /pymobiledevice/usbmux/usbmux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/usbmux/usbmux.py -------------------------------------------------------------------------------- /pymobiledevice/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/util/__init__.py -------------------------------------------------------------------------------- /pymobiledevice/util/asciitables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/util/asciitables.py -------------------------------------------------------------------------------- /pymobiledevice/util/bdev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/util/bdev.py -------------------------------------------------------------------------------- /pymobiledevice/util/bpatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/util/bpatch.py -------------------------------------------------------------------------------- /pymobiledevice/util/bplist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/util/bplist.py -------------------------------------------------------------------------------- /pymobiledevice/util/ccl_bplist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/util/ccl_bplist.py -------------------------------------------------------------------------------- /pymobiledevice/util/cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/util/cert.py -------------------------------------------------------------------------------- /pymobiledevice/util/cpio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/util/cpio.py -------------------------------------------------------------------------------- /pymobiledevice/util/lzss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/util/lzss.py -------------------------------------------------------------------------------- /pymobiledevice/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/pymobiledevice/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/afc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/test/afc_test.py -------------------------------------------------------------------------------- /test/crashreportcopymobile_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/test/crashreportcopymobile_test.py -------------------------------------------------------------------------------- /test/diagnostics_relay_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/test/diagnostics_relay_test.py -------------------------------------------------------------------------------- /test/house_arrest_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/test/house_arrest_test.py -------------------------------------------------------------------------------- /test/installation_proxy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/test/installation_proxy_test.py -------------------------------------------------------------------------------- /test/listdevice_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/test/listdevice_test.py -------------------------------------------------------------------------------- /test/screenshotr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/test/screenshotr_test.py -------------------------------------------------------------------------------- /test/syslog_relay_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iOSForensics/pymobiledevice/HEAD/test/syslog_relay_test.py --------------------------------------------------------------------------------