{"id":23103663,"url":"https://github.com/n0thhhing/il2cpp-offset-updater","last_synced_at":"2026-03-05T05:32:09.602Z","repository":{"id":260373821,"uuid":"881117859","full_name":"n0thhhing/Il2Cpp-Offset-Updater","owner":"n0thhhing","description":"offset updater for aarch64 il2cpp","archived":false,"fork":false,"pushed_at":"2024-12-03T16:47:40.000Z","size":56,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-05T11:51:24.088Z","etag":null,"topics":["aarch64","aob-scan","arm64","external","gradle","il2cpp","kmp","kotlin","modding","offset"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/n0thhhing.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":"2024-10-30T23:56:07.000Z","updated_at":"2025-03-27T18:21:49.000Z","dependencies_parsed_at":"2024-10-31T01:16:38.767Z","dependency_job_id":"3279bff7-da45-40b3-a502-d0857f7718a6","html_url":"https://github.com/n0thhhing/Il2Cpp-Offset-Updater","commit_stats":null,"previous_names":["n0thhhing/il2cpp-offset-updater"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/n0thhhing/Il2Cpp-Offset-Updater","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n0thhhing%2FIl2Cpp-Offset-Updater","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n0thhhing%2FIl2Cpp-Offset-Updater/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n0thhhing%2FIl2Cpp-Offset-Updater/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n0thhhing%2FIl2Cpp-Offset-Updater/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/n0thhhing","download_url":"https://codeload.github.com/n0thhhing/Il2Cpp-Offset-Updater/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n0thhhing%2FIl2Cpp-Offset-Updater/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30111743,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T03:40:26.266Z","status":"ssl_error","status_checked_at":"2026-03-05T03:39:15.902Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["aarch64","aob-scan","arm64","external","gradle","il2cpp","kmp","kotlin","modding","offset"],"created_at":"2024-12-17T00:22:13.932Z","updated_at":"2026-03-05T05:32:09.542Z","avatar_url":"https://github.com/n0thhhing.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IL2CPP AArch64 Offset Updater\n\n## Overview\n\nThe Offset Updater is a tool designed to update\noffsets for IL2CPP binaries between updates on the AArch64 architecture.\nIt utilizes Capstone for disassembly and provides a\nuser-friendly way to manage offsets for dynamic library\nupdates. The application is built in Kotlin and requires\nJava 21 to run.\n\n## Requirements\n\n- **Java 21**: Ensure you have JDK 21 installed on your system.\n- **Kotlin**(only for building): The project is built using Kotlin, ensure you have the necessary dependencies set up in your build configuration.\n\n## Installation\n\n1. Clone the repository or download the project files.\n2. Navigate to the project directory.\n3. Open the terminal and run the following command to build the project:\n\n   ```bash\n   ./gradlew build # or ./gradlew jar to package\n   ```\n\n## Configuration\n\nBefore running the updater, create a `config.json` file in the project root directory. Here’s an example of the configuration:\n\n```json\n{\n  \"sigLen\": 64,\n  \"verbose\": false,\n  \"offsetFile\": \"offsets.txt\",\n  \"outputFile\": \"out.txt\",\n  \"newLib\": \"new.so\",\n  \"oldLib\": \"old.so\"\n}\n```\n\n- `sigLen`: Length of the signature for pattern matching.\n- `verbose`: Enables detailed logging if set to true.\n- `offsetFile`: The file containing the offsets to be updated.\n- `outputFile`: Where the new offsets should go\n- `newLib`: The new library file to scan.\n- `oldLib`: The old library file for reference.\n\n## Offset File Format\nOffset File Format\nThe offsets.txt file must be formatted as follows:\n```\nCopy code\n0xBEAF // comment\n0xF00D\n0x1234\n// comment\n```\nEach line can contain a hexadecimal offset prefixed with 0x.\nComments can be added using // and will be ignored by the parser.\nEmpty lines or lines with only comments will be skipped.\n\n## Usage\n\n1. Prepare the `offsets.txt` file containing the offsets to be updated, following the specified format.\n\n2. You can download the release JAR file from the [releases page](https://github.com/n0thhhing/Il2Cpp-Offset-Updater/releases/) and run the updater with the following command:\n\n   ```bash\n   java -jar Updater-1.0.0.jar\n   ```\n\n   Alternatively, if you built the project yourself, run:\n\n   ```bash\n   java -jar build/libs/Updater-1.0.0.jar\n   ```\n\n3. The application will load the configuration, disassemble the old library, and search for patterns in the new library.\n\n## Output\n\nThe application provides output regarding the status of the offset updates, like whether patterns were found a d the pattern itself. Verbose output can be enabled for detailed information.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.\n\n## Contributing\n\nContributions are welcome! Please open issues for any bugs you find or feature requests you may have.\n\n## Acknowledgements\n\n- [Capstone](https://www.capstone-engine.org/) - A lightweight multi-platform, multi-architecture disassembly framework.\n- [Gson](https://github.com/google/gson) - A Java library to convert Java Objects into JSON and back.\n- [Kotlin](https://kotlinlang.org/) - A modern programming language that makes programming easier and more enjoyable.\n- [ktfmt-gradle](https://github.com/cortinico/ktfmt-gradle) A reliable kotlin formatter for gradle.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn0thhhing%2Fil2cpp-offset-updater","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fn0thhhing%2Fil2cpp-offset-updater","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn0thhhing%2Fil2cpp-offset-updater/lists"}