Skip to content

Checks which OTA blobs are currently being signed by Apple

License

Notifications You must be signed in to change notification settings

ABeltramo/otachecker-u

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

otachecker-u Build Status license: MIT

Otachecker written in pure C++ for any Operating System

Usage

An internet connection is required to download the plist from Apple server

otachecker [-d deviceName -v iOSVersion [-s] ]

If you call it without any argument the result will be all the current OTA's Apple allow

giphy

If you specify what device (-d) and what version (-v) the result will be the OTA URL where you can download it

giphy

If you also add the -s argument the result will also include the latest signign firmware from Apple for the specified device and the URL where you can download the latest IPSW Using:
api.ipsw.me

giphy

How to compile

The makefile it's only tested in Linux. You need first to install boost and curl library:

apt-get install libboost-dev libcurl-dev

Then you can start compiling

make

You can also find already compiled version of otachecker in the release tab

Credits

Developed by: ABeltramo
Based on tihmstar Source
Upon an idea of GenHack
Using PlistCpp, Boost and Curl

License

The MIT License (MIT)

Copyright (c) 2015 Alessandro Beltramo

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.