{"id":30158649,"url":"https://github.com/nab138/isideload","last_synced_at":"2025-08-11T14:52:55.067Z","repository":{"id":308642514,"uuid":"1033550395","full_name":"nab138/isideload","owner":"nab138","description":"A Rust library for sideloading iOS applications.","archived":false,"fork":false,"pushed_at":"2025-08-07T02:17:54.000Z","size":87,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-07T04:11:29.878Z","etag":null,"topics":["idevice","ios","rust","sideload"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nab138.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-07T02:01:35.000Z","updated_at":"2025-08-07T03:42:07.000Z","dependencies_parsed_at":"2025-08-07T04:11:42.629Z","dependency_job_id":null,"html_url":"https://github.com/nab138/isideload","commit_stats":null,"previous_names":["nab138/isideload"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/nab138/isideload","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nab138%2Fisideload","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nab138%2Fisideload/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nab138%2Fisideload/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nab138%2Fisideload/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nab138","download_url":"https://codeload.github.com/nab138/isideload/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nab138%2Fisideload/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269827907,"owners_count":24481604,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["idevice","ios","rust","sideload"],"created_at":"2025-08-11T14:52:53.897Z","updated_at":"2025-08-11T14:52:55.028Z","avatar_url":"https://github.com/nab138.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# isideload\n\nA Rust library for sideloading iOS applications. Designed for use in [YCode](https://github.com/nab138/YCode).\n\n## Disclaimer\n\nThis package uses private Apple Developer APIs. Use at your own risk.\n\n## Usage\n\nTo use isideload, add the following to your `Cargo.toml`:\n\n```toml\n[dependencies]\n# Make sure to use the latest version\nisideload = { version = \"0.1.1\", features = [\"vendored-openssl\", \"vendored-botan\" ] } # Optionally, both vendored features can be enabled to avoid needing OpenSSL and Botan installed on your system.\nidevice = { version = \"0.1.37\", features = [\"usbmuxd\"]} # Used to give isideload an IdeviceProvider. You don't need to use usbmuxd. For more info see https://github.com/jkcoxson/idevice\n```\n\nThen, you can use it like so:\n\n```rs\nuse std::{env, path::PathBuf, sync::Arc};\n\nuse idevice::usbmuxd::{UsbmuxdAddr, UsbmuxdConnection};\nuse isideload::{\n    AnisetteConfiguration, AppleAccount, SideloadConfiguration,\n    developer_session::DeveloperSession, sideload::sideload_app,\n};\n\n#[tokio::main]\nasync fn main() {\n    let args: Vec\u003cString\u003e = env::args().collect();\n    let app_path = PathBuf::from(\n        args.get(1)\n            .expect(\"Please provide the path to the app to install\"),\n    );\n    let apple_id = args\n        .get(2)\n        .expect(\"Please provide the Apple ID to use for installation\");\n    let apple_password = args.get(3).expect(\"Please provide the Apple ID password\");\n\n    // You don't have to use usbmuxd, you can use any IdeviceProvider\n    let usbmuxd = UsbmuxdConnection::default().await;\n    if usbmuxd.is_err() {\n        panic!(\"Failed to connect to usbmuxd: {:?}\", usbmuxd.err());\n    }\n    let mut usbmuxd = usbmuxd.unwrap();\n\n    let devs = usbmuxd.get_devices().await.unwrap();\n    if devs.is_empty() {\n        panic!(\"No devices found\");\n    }\n\n    let provider = devs\n        .iter()\n        .next()\n        .unwrap()\n        .to_provider(UsbmuxdAddr::from_env_var().unwrap(), \"isideload-demo\");\n\n    // Change the anisette url and such here\n    // Note that right now only remote anisette servers are supported\n    let anisette_config = AnisetteConfiguration::default();\n\n    let get_2fa_code = || {\n        let mut code = String::new();\n        println!(\"Enter 2FA code:\");\n        std::io::stdin().read_line(\u0026mut code).unwrap();\n        Ok(code.trim().to_string())\n    };\n\n    let account = AppleAccount::login(\n        || Ok((apple_id.to_string(), apple_password.to_string())),\n        get_2fa_code,\n        anisette_config,\n    )\n    .await\n    .unwrap();\n\n    let dev_session = DeveloperSession::new(Arc::new(account));\n\n    // You can change the machine name, store directory (for certs, anisette data, \u0026 provision files), and logger\n    let config = SideloadConfiguration::default().set_machine_name(\"isideload-demo\".to_string());\n\n    sideload_app(\u0026provider, \u0026dev_session, app_path, config)\n        .await\n        .unwrap()\n}\n```\n\nSee [examples/minimal/src/main.rs](examples/minimal/src/main.rs).\n\n## Licensing\n\nThis project is licensed under the MPL-2.0 License. See the [LICENSE](LICENSE) file for details.\n\n## Credits\n\n- The amazing [idevice](https://github.com/jkcoxson/idevice) crate is used to communicate with the device\n\n- Packages from [`apple-private-apis`](https://github.com/SideStore/apple-private-apis) were used for authentication, but the original project was left unfinished. To support isideload, `apple-private-apis` was forked and modified to add missing features. With permission from the original developers, the fork was published to crates.io until the official project is published.\n\n- [ZSign](https://github.com/zhlynn/zsign) was used for code signing with [custom rust bindings](https://github.com/nab138/zsign-rust)\n\n- [Sideloader](https://github.com/Dadoum/Sideloader) was used as a reference for how the private API endpoints work\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnab138%2Fisideload","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnab138%2Fisideload","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnab138%2Fisideload/lists"}