https://github.com/signtools/ota-me
Serves a dummy OTA ad hoc manifest that redirects to localhost
https://github.com/signtools/ota-me
Last synced: 6 months ago
JSON representation
Serves a dummy OTA ad hoc manifest that redirects to localhost
- Host: GitHub
- URL: https://github.com/signtools/ota-me
- Owner: SignTools
- Created: 2021-03-06T23:25:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-12T01:41:21.000Z (almost 4 years ago)
- Last Synced: 2024-11-08T10:47:44.716Z (7 months ago)
- Language: Go
- Size: 514 KB
- Stars: 7
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OTA Me
This is a very simple project that lets you OTA install iOS apps from localhost over HTTP. If you are looking for a more flexible, but more complicated solution, check out [ota-proxy](https://github.com/SignTools/ota-proxy).
It works by offering valid HTTPS OTA manifests, hosted here on GitHub, that install any app from localhost over HTTP. You can host your IPA locally on any port, then use the corresponding manifest from here to install that app. The app download remains completely local - the manifest is only used to resolve the app's local URL. No information is ever transmitted to the internet. This method works because Apple enforces the manifest to be served over HTTPS, but not the apps within the manifest.
## Usage
Open the following link on your iOS device:
https://signtools.github.io/ota-me/data/8080
It will instruct your device to install the app found under http://localhost:8080
You can replace the trailing `8080` to any number between `0-10000`.
## Development
The project has two branches:
- [master](https://github.com/SignTools/ota-me/tree/master) - manifest generator
- [data](https://github.com/SignTools/ota-me/tree/data) - the served manifests