'Use when detects and analyzes malicious behavior in mobile applications
Scanned 9/8/2026
Install to Claude Code
npx -y skills add oyi77/1ai-skills --skill detecting-mobile-malware-behavior --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Detecting Mobile Malware Behavior?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/oyi77-detecting-mobile-malware-behavior)More formats (shields.io, HTML) on the badges page.
---
name: detecting-mobile-malware-behavior
description: 'Use when detects and analyzes malicious behavior in mobile applications
through behavioral analysis, permission abuse detection, network traffic monitoring,
and dynamic instrumentation. Use when analyzing suspicious mobile applications for
data exfiltration, command-and-control communication, credential stealing, SMS interception,
or other malware indicators. Activates for requests involving mobile malware analysis,
app behavior monitoring, trojan detection, or suspicious app investigation.
'
domain: cybersecurity
tags:
- mobile-security
- android
- ios
- malware-analysis
- owasp-mobile
- penetration-testing
subdomain: mobile-security
author: oyi77
version: 1.0.0
license: Apache-2.0
nist_csf:
- PR.PS-01
- PR.AA-05
- ID.RA-01
- DE.CM-09
category: cybersecurity
---
# Detecting Mobile Malware Behavior
## Overview
Cybersecurity skill for detecting mobile malware behavior. Follows industry best practices and security standards.
## When to Use
**Trigger phrases:**
- "detecting mobile malware behavior"
- "Analyzing suspicious mobile applications submitted by users or discovered during"
- "Monitoring enterprise mobile fleet for malicious app indicators"
- "Performing malware triage on APK/IPA samples"
Use this skill when:
- Analyzing suspicious mobile applications submitted by users or discovered during incident response
- Monitoring enterprise mobile fleet for malicious app indicators
- Performing malware triage on APK/IPA samples
- Investigating data exfiltration or unauthorized device access from mobile apps
**Do not use** this skill to create, enhance, or distribute malware. This skill is for defensive analysis only.
## When NOT to Use
- When you lack proper authorization for testing
- For production systems without change management
- When the task requires legal or compliance expertise beyond technical scope
## Prerequisites
- Isolated analysis environment (dedicated device or emulator, not connected to production networks)
- MobSF for automated static+dynamic analysis
- Frida/Objection for runtime behavior monitoring
- Wireshark/tcpdump for network traffic capture
- Android emulator (AVD) or Genymotion for safe execution
- VirusTotal API key for hash lookups
## Workflow
```python
# Example: IOC detection
import re
IOC_PATTERNS = {
"ip": r"\b(?:\d{1,3}\.){3}\d{1,3}\b",
"domain": r"\b[a-z0-9-]+\.[a-z]{2,}\b",
"hash_md5": r"\b[a-f0-9]{32}\b",
"hash_sha256": r"\b[a-f0-9]{64}\b",
}
def extract_iocs(text: str) -> dict:
return {k: re.findall(v, text) for k, v in IOC_PATTERNS.items()}
```
1. **Define Detection Scope** — Identify the specific mobile malware behavior techniques or indicators to hunt. Map to MITRE ATT&CK tactics/techniques where applicable.
2. **Collect Baseline Data** — Gather historical logs and establish normal behavior patterns for mobile malware behavior.
3. **Build Detection Queries** — Write detection rules, Sigma rules, or SIEM queries targeting mobile malware behavior indicators.
4. **Execute Hunts** — Run queries against the collected data, starting with broad filters and narrowing down.
5. **Triage Results** — Investigate alerts, filter false positives, and validate findings against known-good behavior.
6. **Document Findings** — Record confirmed detections, IOCs, and affected systems. Update detection rules based on findings.
## Tools
- **SIEM Platform** — Central log aggregation and query execution
- **Sigma Rules** — Vendor-agnostic detection rule format
- **MITRE ATT&CK Navigator** — Technique mapping and coverage analysis
## Process
1. **Reconnaissance** — Gather target information, identify attack surface, enumerate services
1. **Analysis/Exploitation** — Execute the technique, analyze results, document findings
1. **Reporting** — Document IOCs, write findings, provide remediation recommendations
## Verification
- [ ] All mobile malware behavior procedures executed completely and documented
- [ ] Findings validated against multiple data sources
- [ ] False positives identified and filtered
- [ ] Results documented with evidence and timestamps
- [ ] Recommendations provided with risk-based prioritization
## Anti-Rationalization Table
| Rationalization | Reality |
|---|---|
| "We are too small to be targeted" | Automated attacks target everyone. Size does not matter. |
| "Security slows us down" | A breach slows you down 100x more. Build security in from the start. |
| "We will fix it after launch" | Vulnerabilities in production are exploited within hours. Fix before deploy. |Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!