{"id":17006036,"url":"https://github.com/aress31/corellium-utils","last_synced_at":"2026-05-18T11:07:40.476Z","repository":{"id":74505681,"uuid":"551727534","full_name":"aress31/corellium-utils","owner":"aress31","description":"A collection of utility scripts leveraging the Corellium API and designed to facilitate mobile pentesting.","archived":false,"fork":false,"pushed_at":"2022-10-16T11:36:27.000Z","size":20,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-22T10:49:37.253Z","etag":null,"topics":["android","api","corellium","cyber-security","emulation","https","ios","mobile","network-analysis","pentest","pentest-tool","pentesting","pentesting-tool","reverse-engineering","screenshots","security-audit","ssl-pinning"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aress31.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}},"created_at":"2022-10-15T01:16:10.000Z","updated_at":"2022-11-01T13:36:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"fd900098-cfb2-4252-8578-2d05b993f90c","html_url":"https://github.com/aress31/corellium-utils","commit_stats":{"total_commits":7,"total_committers":1,"mean_commits":7.0,"dds":0.0,"last_synced_commit":"c99794d913b0ca41430fa49db6f3b955abcb2141"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aress31/corellium-utils","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aress31%2Fcorellium-utils","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aress31%2Fcorellium-utils/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aress31%2Fcorellium-utils/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aress31%2Fcorellium-utils/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aress31","download_url":"https://codeload.github.com/aress31/corellium-utils/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aress31%2Fcorellium-utils/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33175920,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["android","api","corellium","cyber-security","emulation","https","ios","mobile","network-analysis","pentest","pentest-tool","pentesting","pentesting-tool","reverse-engineering","screenshots","security-audit","ssl-pinning"],"created_at":"2024-10-14T05:04:51.315Z","updated_at":"2026-05-18T11:07:40.457Z","avatar_url":"https://github.com/aress31.png","language":"JavaScript","funding_links":["https://github.com/sponsors/aress31"],"categories":[],"sub_categories":[],"readme":"# corellium-utils\n\n[![Language](https://img.shields.io/badge/Lang-JavaScript-blue.svg)](https://www.javascript.com/)\n[![License](https://img.shields.io/badge/License-Apache%202.0-red.svg)](https://opensource.org/licenses/Apache-2.0)\n\n## Corellium Utility Scripts\n\nA collection of scripts written in `JavaScript` designed to interact with the [Corellium API](https://corellium.github.io/corellium-api/) with the aim of facilitating pentesting activities.\n\nCurrently comprises of:\n\n- `sslPinning.js`: Allows querying the current `status` of SSL pinning as well as switching SSL pinning `on`/`off`.\n- `takeScreenshot.js`: Facilitates screenshot taking by directly dropping screenshots within the local `screenshots` folder.\n\n## Installation\n\n1. Install [Node.js](https://nodejs.org/en/).\n\n2. Download this repository:\n\n   ```bash\n   git clone https://github.com/aress31/corellium-utils\n   cd .\\corellium-utils\n   ```\n \n3. Install the dependencies:\n\n   \u003e [!IMPORTANT]\n   \u003e The command below is to be executed in the root folder of this project.\n\n   ```bash\n   npm install\n   ```\n\n4. Create an `.env` file in the root folder containing the following constants:\n\n   \u003e [!NOTE]\n   \u003e Replace the placeholder values with your values.\n\n   ```\n   API_TOKEN=\"XXX\"\n   ENDPOINT=\"https://app.corellium.com\"\n   INSTANCE=\"XXX\"\n   PROJECT=\"Default Project\"\n   ```\n\n## Usage\n\n- To take a screenshot:\n\n  ```bash\n  node .\\takeScreenshot.js\n  ```\n\n- To query the `status` of SSL pinning:\n\n  ```bash\n  node .\\sslPinning.js -c status\n  ```\n\n- To `enable` SSL pinning bypass:\n\n  ```bash\n  node .\\sslPinning.js -c enable\n  ```\n\n- To `disable` SSL pinning bypass:\n\n  ```bash\n  node .\\sslPinning.js -c disable\n  ```\n\n## Roadmap\n\n- [ ] Improve the `argparsing` logic.\n- [ ] Merge the scripts into a master script with more function modularity, e.g., `login`.\n- [ ] Automate proxying to Burp Suite, so far it seems that the current version of the [Corellium API](https://corellium.github.io/corellium-api/) does not export any function that could enable us implementing this feature.\n- [ ] Implement additional features - open to suggestions.\n\n## Sponsor 💖\n\nIf you want to support this project and appreciate the time invested in developping, maintening and extending it; consider donating toward my next cup of coffee. ☕\n\nIt is easy, all you got to do is press the `Sponsor` button at the top of this page or alternatively [click this link](https://github.com/sponsors/aress31). 💸\n\n## Reporting Issues\n\nFound a bug? I would love to squash it! 🐛\n\nPlease report all issues on the GitHub [issues tracker](https://github.com/aress31/corellium-utils/issues).\n\n## Contributing\n\nYou would like to contribute to better this project? 🤩\n\nPlease submit all `PRs` on the GitHub [pull requests tracker](https://github.com/aress31/corellium-utils/pulls).\n\n## License\n\nSee [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faress31%2Fcorellium-utils","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faress31%2Fcorellium-utils","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faress31%2Fcorellium-utils/lists"}