{"id":18620552,"url":"https://github.com/thibmaek/rekt","last_synced_at":"2026-02-15T17:02:22.343Z","repository":{"id":203951235,"uuid":"700541445","full_name":"thibmaek/rekt","owner":"thibmaek","description":"Time to get rekt! Rekt is an app rekking tool for Android \u0026 iOS apps","archived":false,"fork":false,"pushed_at":"2024-08-14T17:27:11.000Z","size":9388,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-01T11:41:52.173Z","etag":null,"topics":["android","flutter","hermes","ios","jadx","kotlin","react-native","rekt-cli","reverse-engineering","swift"],"latest_commit_sha":null,"homepage":"","language":"Go","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/thibmaek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2023-10-04T19:30:41.000Z","updated_at":"2024-12-30T05:14:57.000Z","dependencies_parsed_at":null,"dependency_job_id":"500e799b-f4d4-47fe-999a-4135dfb5c307","html_url":"https://github.com/thibmaek/rekt","commit_stats":null,"previous_names":["thibmaek/rekt"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/thibmaek/rekt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thibmaek%2Frekt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thibmaek%2Frekt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thibmaek%2Frekt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thibmaek%2Frekt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thibmaek","download_url":"https://codeload.github.com/thibmaek/rekt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thibmaek%2Frekt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274744062,"owners_count":25341136,"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-09-12T02:00:09.324Z","response_time":60,"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":["android","flutter","hermes","ios","jadx","kotlin","react-native","rekt-cli","reverse-engineering","swift"],"created_at":"2024-11-07T04:06:54.201Z","updated_at":"2026-02-15T17:02:17.324Z","avatar_url":"https://github.com/thibmaek.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rekt\n\n```plaintext\n=====================================================\n                 __  __     __\n _ __     __    /\\ \\/  \\   /\\ \\__\n/\\` __\\ / ,.`\\  \\ \\    \u003c   \\ \\ ,_\\\n\\ \\ \\/ /\\  __/   \\ \\  ^  \\  \\ \\ \\/\n \\ \\_\\ \\ \\____\\   \\ \\_\\ \\_\\  \\ \\ \\_\n  \\/_/  \\/____/    \\/_/\\/_/   \\ \\__\\\n                               \\/__/\n=====================================================\n```\n\n## Prereqs\n\nIf running outside of Docker (e.g locally) you will need the following installed:\n- jadx (Java)\n- hermes-desc (Python)\n\n## Install\n\nHow to get rekt:\n\n- Use the binary in the `./rekt-cli/bin` folder\n- Download from Github releases\n- Build it yourself\n\n## Usage\n\nRekt decompiles, analyzes and breaks application archives. A valid app archive file is needed for either of these platforms:\n\n- iOS: iOS Package App Store (IPA, `.ipa`)\n- Android: Android Package Kit (APK, `.apk`)\n\nBoth of these archives are essentialy glorified ZIP archives that you can also unpack manually.\n\n### Docker\n\nPull the image and bindmount a volume `scan` containing your archive:\n\n```console\n$ docker pull @thibmaek/rekt\n$ docker run -it --rm -v $(pwd)/scan:/scan @thibmaek/rekt /scan/com.my_app.apk\n```\n\n### CLI\n\nA typical run of rekt using the cli involves running:\n\n1. **Decompile** - Getting plain readable files\n2. **Probe** - Gathering info about the decompiled app\n3. **Break** - Finding secrets and credential files\n\nGiven an APK `com.my_app.apk` you'd get the results like this:\n\n```console\n$ rekt decompile -archive=./com.my_app.apk\n$ rekt probe -outputDir=./scan/com_my_app\n$ rekt break -outputDir-./scan/com_my_app\n```\n\n#### Decompile\n\n```console\n# Decompiling an APK\n$ rekt decompile -archive=./com.my_app.apk\n\n# Decompiling an IPA\n$ rekt decompile -archive=./com.my_app.ipa\n```\n\nOptionally provide an output directory `-outputdir`. Defaults to `./scan/\u003cbundle_id\u003e`\n\n```console\n$ rekt decompile -archive=./com.my_app.apk -outputDir=./decompiled_app\n```\n\n#### Probe\n\n```console\n$ rekt probe -inputDir=./scan/com_my_app\n```\n\n#### Break\n\n```console\n$ rekt break -inputDir=./scan/com_my_app\n```\n\n## Building\n\n```console\n# Install local dependencies\n$ make dependencies\n\n# Build Docker \u0026 Go\n$ make build\n\n# Build only the docker image\n$ make build_docker\n\n# Build only the CLI\n$ make build_cli\n```\n\n## Todos\n\n- Gitlab CI support\n- Github Actions support\n- Azure Devops support\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthibmaek%2Frekt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthibmaek%2Frekt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthibmaek%2Frekt/lists"}