├── .gitignore ├── LICENSE ├── README.md ├── bundlegen ├── inferius ├── requirements.txt └── utils ├── api.py ├── bundle.py ├── dependencies.py ├── device.py ├── ipsw.py ├── manifest.py └── restore.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1stadev/Inferius/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1stadev/Inferius/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1stadev/Inferius/HEAD/README.md -------------------------------------------------------------------------------- /bundlegen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1stadev/Inferius/HEAD/bundlegen -------------------------------------------------------------------------------- /inferius: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1stadev/Inferius/HEAD/inferius -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bsdiff4 2 | mwclient 3 | remotezip 4 | requests 5 | pyusb -------------------------------------------------------------------------------- /utils/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1stadev/Inferius/HEAD/utils/api.py -------------------------------------------------------------------------------- /utils/bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1stadev/Inferius/HEAD/utils/bundle.py -------------------------------------------------------------------------------- /utils/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1stadev/Inferius/HEAD/utils/dependencies.py -------------------------------------------------------------------------------- /utils/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1stadev/Inferius/HEAD/utils/device.py -------------------------------------------------------------------------------- /utils/ipsw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1stadev/Inferius/HEAD/utils/ipsw.py -------------------------------------------------------------------------------- /utils/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1stadev/Inferius/HEAD/utils/manifest.py -------------------------------------------------------------------------------- /utils/restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1stadev/Inferius/HEAD/utils/restore.py --------------------------------------------------------------------------------