{"id":51021077,"url":"https://github.com/lautarovculic/intentions","last_synced_at":"2026-06-21T16:30:51.546Z","repository":{"id":363964704,"uuid":"1265776013","full_name":"lautarovculic/intentions","owner":"lautarovculic","description":"Android IPC research workbench. Build, capture, replay and fuzz Intents.","archived":false,"fork":false,"pushed_at":"2026-06-11T04:26:36.000Z","size":193,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-11T06:14:31.211Z","etag":null,"topics":["android-ipc","android-security","hacking-apps","hacking-tool","intents","mobile-hacking","mobile-security","research"],"latest_commit_sha":null,"homepage":"https://lautarovculic.com","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"wtfpl","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lautarovculic.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-11T04:25:58.000Z","updated_at":"2026-06-11T04:27:47.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lautarovculic/intentions","commit_stats":null,"previous_names":["lautarovculic/intentions"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/lautarovculic/intentions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lautarovculic%2Fintentions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lautarovculic%2Fintentions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lautarovculic%2Fintentions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lautarovculic%2Fintentions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lautarovculic","download_url":"https://codeload.github.com/lautarovculic/intentions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lautarovculic%2Fintentions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34618474,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-21T02:00:05.568Z","response_time":54,"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-ipc","android-security","hacking-apps","hacking-tool","intents","mobile-hacking","mobile-security","research"],"created_at":"2026-06-21T16:30:48.910Z","updated_at":"2026-06-21T16:30:51.536Z","avatar_url":"https://github.com/lautarovculic.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Intentions\n\nAndroid tool for poking at IPC. Think of it as a little workbench for Intents: build and fire them off, browse what other apps expose, capture what comes in, then replay or fuzz it. Built for a rooted phone (Magisk / KernelSU / APatch), Android 10+.\n\n## What you can do with it\n\n- Scan installed apps and list their exported activities, services, receivers and providers — with their permissions and deep links.\n- Build any Intent by hand (action, data, categories, flags, typed extras) and send it either from inside the app or as a root `am` command.\n- Export whatever you build as an adb command, a `su` command, Kotlin, or JSON, plus a markdown PoC for reports.\n- Capture incoming stuff two ways: an in-app sink (links/shares routed to it through the Android chooser) and a root logcat observer for activity starts. It's honest about the limits — a normal app can't see *every* Intent on the device, so capture is partial unless you go the LSPosed route.\n- Repeater and fuzzer for replaying and mutating deep links / extras, plus a provider lab and a raw root console.\n\nMost of the discovery and building works without root. The shell execution and the logcat capture need it.\n\n## Building it\n\nYou just need Android Studio and a phone with USB debugging on. JDK 17.\n\n1. Clone it:\n\n   ```bash\n   git clone https://github.com/lautarovculic/intentions\n   cd intentions\n   ```\n\n2. Open the folder in Android Studio and let Gradle sync (first sync pulls the SDK bits it needs, give it a minute).\n3. Plug in the phone, pick it in the device dropdown, hit Run.\n\nFirst launch it'll ask for root — grant it so the shell and capture stuff actually works.\n\nIf you don't feel like opening the IDE:\n\n```bash\n./gradlew installDebug\n```\n\n## Exporting\n\nAnything you build can be copied out in a few formats. Same Intent, as an adb command:\n\n```bash\nadb shell am start -W -n com.target/.DeepLinkActivity \\\n  -a android.intent.action.VIEW \\\n  -d 'target://open?next=//attacker.example' \\\n  -c android.intent.category.BROWSABLE \\\n  --ez debug true\n```\n\n...or as a Kotlin snippet you can drop into a PoC app:\n\n```kotlin\nval intent = Intent().apply {\n    component = ComponentName(\"com.target\", \"com.target.DeepLinkActivity\")\n    action = \"android.intent.action.VIEW\"\n    data = Uri.parse(\"target://open?next=//attacker.example\")\n    addCategory(\"android.intent.category.BROWSABLE\")\n    putExtra(\"debug\", true)\n}\ncontext.startActivity(intent)\n```\n\nThere's also `su` and JSON if you need them.\n\n## Stack\n\nKotlin, Jetpack Compose, MVVM + use cases + repositories, Room, Coroutines. minSdk 29.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flautarovculic%2Fintentions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flautarovculic%2Fintentions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flautarovculic%2Fintentions/lists"}