{"id":21684534,"url":"https://github.com/someaspy/flightrecorder","last_synced_at":"2026-01-24T19:50:05.614Z","repository":{"id":259353985,"uuid":"877586317","full_name":"SomeAspy/FlightRecorder","owner":"SomeAspy","description":"Bash script to rip IPA files","archived":false,"fork":false,"pushed_at":"2024-10-26T16:17:57.000Z","size":20,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-26T07:41:33.548Z","etag":null,"topics":["bash","frida","ipa","jailbreak","script"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SomeAspy.png","metadata":{"files":{"readme":".github/readme.md","changelog":null,"contributing":null,"funding":".github/funding.yml","license":null,"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},"funding":{"github":"someaspy"}},"created_at":"2024-10-23T23:00:47.000Z","updated_at":"2025-01-26T03:50:18.000Z","dependencies_parsed_at":"2025-05-12T13:21:20.940Z","dependency_job_id":"b65e4377-13e9-4201-9729-5971c183a39f","html_url":"https://github.com/SomeAspy/FlightRecorder","commit_stats":null,"previous_names":["someaspy/flightrecorder"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SomeAspy/FlightRecorder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SomeAspy%2FFlightRecorder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SomeAspy%2FFlightRecorder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SomeAspy%2FFlightRecorder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SomeAspy%2FFlightRecorder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SomeAspy","download_url":"https://codeload.github.com/SomeAspy/FlightRecorder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SomeAspy%2FFlightRecorder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28735371,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T19:23:36.361Z","status":"ssl_error","status_checked_at":"2026-01-24T19:23:28.966Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bash","frida","ipa","jailbreak","script"],"created_at":"2024-11-25T16:15:59.057Z","updated_at":"2026-01-24T19:50:05.598Z","avatar_url":"https://github.com/SomeAspy.png","language":"Shell","funding_links":["https://github.com/sponsors/someaspy"],"categories":[],"sub_categories":[],"readme":"# FlightRecorder\n\n![iPhone 15 Pro Max](https://github.com/user-attachments/assets/25ceaca1-c862-4002-bafa-3b18cd7f419c)\n\nDump IPAs off a jailbroken iOS device automatically.\n\n## Setup\n\n### On idevice\n\n1. Jailbreak the device\n2. Using your favorite package manager, add and install Frida using the Frida repo \u003chttps://build.frida.re\u003e ([Install docs](https://frida.re/docs/ios/))\n3. on the device, install the following:\n    - `open`\n    - `plutil`\n    - An SSH server\n4. Run `frida-server` (By default this will listen on `0.0.0.0:27042` - use `-l ip:port` to override)\n\n\u003e [!IMPORTANT]  \n\u003e The idevice must be **awake**, otherwise the app cannot open.\n\n## On server\n\n1. Clone this repo\n2. Copy `.env.example` to `.env`\n3. Fill out `.env`\n    - `ideviceSSH`: SSH string to connect to the idevice in `user@host` format (You can also use presets from your SSH config)\n    - `ideviceIP`: IP of the idevice to SSH into and use Frida from\n    - `ideviceUser`: User for SSH (This is generally `mobile`)\n    - `idevicePort`: SSH port for the idevice (This is generally `2222` or `22`)\n    - `FridaPort`: The port for the Frida server (`frida-server` runs on `27042` by default)\n    - `IPAServer`: The web directory where you host IPAs (Should return `200` if the IPA exists, `404` otherwise)\n    - `UploadDirectory`: The directory the IPAs are hosted from for `IPAServer`\n    - `AppName`: The app's name (The first letter is usually capitalized)\n    - `AppIdentifier`: The app's identifier (This usually looks like `TLD.company.app`)\n    - `DiscordWebhook` [Optional]: The URL for the webhook\n4. Run `setup.sh` (You may need to `chmod +x` the file)\n    - This script does the following:\n    1. Clones required submodules into the repository\n    2. Adds execution permission to `GetIPA.sh`\n    3. Initializes a Python virtual environment\n    4. Installs required Python dependencies\n5. Run `GetIPA.sh`\n    - This script does the following:\n    1. Grabs variables from the `.env` file\n    2. SSHs into the idevice to get the app version information\n    3. Checks whether the IPA exists already on the server\n        - If it does, exit.\n    4. SSHs into the idevice and uses `open` to open the specified app\n    5. Runs [`frida-ios-dump`](https://github.com/miticollo/frida-ios-dump)'s [`decrypter.py`](https://github.com/miticollo/frida-ios-dump/blob/master/decrypter.py)\n        - This places the IPA file into the current folder\n    6. Rename the IPA file to `{name}_{semver}_{build}.ipa` and move to the server directory\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsomeaspy%2Fflightrecorder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsomeaspy%2Fflightrecorder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsomeaspy%2Fflightrecorder/lists"}