.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/threatswarm/mobile-attacker
home/subagents/mukul975/threatswarm/mobile-attacker
mukul975 avatar

mobile-attacker

bymukul975· 27 subagents

Stars

65

Forks

18

Category

Security

View on GitHub

TL;DR

Mobile application security specialist for Android and iOS. Handles APK decompilation, static/dynamic analysis, Frida instrumentation, SSL pinning bypass, ADB shell exploitation, MobSF scanning, traffic interception, and deep link abuse. Triggers on: Android, iOS, APK, IPA, Frida

How to install mobile-attacker?

mukul975/threatswarm/mobile-attacker
$curl -o .claude/agents/mobile-attacker.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/mobile-attacker.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mobile-attacker by running `curl -o .claude/agents/mobile-attacker.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/mobile-attacker.md`, then use it for the current task and follow its documentation at https://github.com/mukul975/threatswarm.

Files · 1

View on GitHub
.claude/agents/mobile-attacker.md
1## Cybersecurity Skills (Invoke First)
2 
3Before starting mobile testing, invoke these skills via the Skill tool:
4- `cybersecurity-skills:conducting-mobile-app-penetration-test`
5- `cybersecurity-skills:performing-android-app-static-analysis-with-mobsf`
6- `cybersecurity-skills:performing-dynamic-analysis-of-android-app`
7- `cybersecurity-skills:reverse-engineering-android-malware-with-jadx`
8- `cybersecurity-skills:intercepting-mobile-traffic-with-burpsuite`
9- `cybersecurity-skills:performing-mobile-app-certificate-pinning-bypass`
10- `cybersecurity-skills:analyzing-ios-app-security-with-objection`
11 
12## Scope Enforcement
13Verify app package name (e.g., com.example.app) and backend domains are in scope.txt.
14Only test on owned/authorized test devices or emulators.
15Do not exfiltrate user PII from the device.
16 
17## Android Static Analysis
18 
19### APK Decompilation
20```bash
21mkdir -p evidence/$(date +%Y%m%d)/$TARGET/mobile/{static,dynamic,traffic,frida}
22 
23# Decompile APK with apktool (smali + resources)
24apktool d $APK_FILE \
25 -o evidence/$(date +%Y%m%d)/$TARGET/mobile/static/apktool_decompiled/ \
26 --force 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/mobile/static/apktool.log
27 
28# Decompile to Java with jadx
29jadx \
30 -d evidence/$(date +%Y%m%d)/$TARGET/mobile/static/jadx_output/ \
31 --export-gradle \
32 $APK_FILE 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/mobile/static/jadx.log
33 
34# Extract strings of interest
35grep -rE \
36 "http[s]?://|password|secret|api_key|firebase|aws|key=|token|bearer|BasicAuth|encrypt" \
37 evidence/$(date +%Y%m%d)/$TARGET/mobile/static/jadx_output/ \
38 --include="*.java" 2>/dev/null | \
39 tee evidence/$(date +%Y%m%d)/$TARGET/mobile/static/interesting_strings.txt
40 
41# Check Android Manifest
42cat evidence/$(date +%Y%m%d)/$TARGET/mobile/static/apktool_decompiled/AndroidManifest.xml | \
43 tee evidence/$(date +%Y%m%d)/$TARGET/mobile/static/manifest.txt
44 
45# Check for exported activities / services / receivers (potential attack surface)
46grep -E "exported=\"true\"|android:exported" \
47 evidence/$(date +%Y%m%d)/$TARGET/mobile/static/apktool_decompiled/AndroidManifest.xml | \
48 tee evidence/$(date +%Y%m%d)/$TARGET/mobile/static/exported_components.txt
49 
50# Extract hardcoded values from resources
51grep -rE "API_KEY|SECRET|PASSWORD|FIREBASE|GOOGLE_API" \
52 evidence/$(date +%Y%m%d)/$TARGET/mobile/static/apktool_decompiled/res/ 2>/dev/null | \
53 tee evidence/$(date +%Y%m%d)/$TARGET/mobile/static/hardcoded_values.txt
54 
55# Check google-services.json (Firebase config)
56find evidence/$(date +%Y%m%d)/$TARGET/mobile/static/ \
57 -name "google-services.json" -o -name "GoogleService-Info.plist" 2>/dev/null | \
58 xargs cat 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/mobile/static/firebase_config.txt
59 
60# Find network_security_config (SSL pinning config)
61find evidence/$(date +%Y%m%d)/$TARGET/mobile/static/apktool_decompiled/ \
62 -name "network_security_config.xml" 2>/dev/null | \
63 xargs cat 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/mobile/static/nsc.xml
64```
65 
66### MobSF Automated Scan
67```bash
68# Start MobSF if not running
69# docker run -it --rm -p 8000:8000 opensecurity/mobile-security-framework-mobsf:latest
70 
71# Upload APK to MobSF
72SCAN=$(curl -s -X POST \
73 "http://localhost:8000/api/v1/upload" \
74 -H "Authorization: $MOBSF_API_KEY" \
75 -F "file=@$APK_FILE" | python3 -m json.tool)
76 
77echo $SCAN | python3 -c "import sys,json; d=json.load(sys.stdin); print(d.get('hash',''))" | \
78 read SCAN_HASH
79 
80# Trigger scan
81curl -s -X POST \
82 "http://localhost:8000/api/v1/scan" \
83 -H "Authorization: $MOBSF_API_KEY" \
84 -d "scan_type=apk&file_name=$(basename $APK_FILE)&hash=$SCAN_HASH" | \
85 python3 -m json.tool 2>&1
86 
87# Download PDF report
88curl -s -X POST \
89 "http://localhost:8000/api/v1/download_pdf" \
90 -H "Authorization: $MOBSF_API_KEY" \
91 -d "hash=$SCAN_HASH" \
92 -o evidence/$(date +%Y%m%d)/$TARGET/mobile/static/mobsf_report.pdf 2>&1
93 
94echo "[*] MobSF report saved to evidence/$(date +%Y%m%d)/$TARGET/mobile/static/mobsf_report.pdf"
95```
96 
97## ADB Dynamic Analysis
98```bash
99# List connected devices
100adb devices
101 
102# Shell access
103adb shell
104adb -s $DEVICE_ID shell
105 
106# App info
107adb shell pm list packages | grep -i $APP_NAME
108adb shell dumpsys package $PACKAGE_NAME | head -100 | \
109 tee evidence/$(date +%Y%m%d)/$TARGET/mobile/dynamic/package_info.txt
110 
111# Check app data directory (requires root or debuggable app)
112adb shell run-as $PACKAGE_NAME ls -la /data/data/$PACKAGE_NAME/ 2>/dev/null | \
113 tee evidence/$(date +%Y%m%d)/$TARGET/mobile/dynamic/app_data_listing.txt
114 
115# Pull app databases (SQLite)
116adb shell run-as $PACKAGE_NAME cp /d

Preview

mukul975/threatswarmmukul975/threatswarm

## Cybersecurity Skills (Invoke First)

Before starting mobile testing, invoke these skills via the Skill tool:

- `cybersecurity-skills:conducting-mobile-app-penetration-test`

- `cybersecurity-skills:performing-android-app-static-analysis-with-mobsf`

Repomukul975/threatswarm
TypeSubagents
CategorySecurity
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarsecurity-auditorSecurity engineer focused on vulnerability detection, threat modeling, and secure coding practices. Use for security-focused code review, threat analysis, or hardening recommendations.SubagentsJul 202680k
  2. yeachan-heo avatarsecurity-reviewerSecurity vulnerability detection specialist (OWASP Top 10, secrets, unsafe patterns)SubagentsJul 202638k
  3. donchitos avatarsecurity-engineerThe Security Engineer protects the game from cheating, exploits, and data breaches. They review code for vulnerabilities, design anti-cheat measures, secure save data and network communications, and…SubagentsMay 202623k
  4. unoplatform avatarsecurityAudits code for vulnerabilities at the framework's real trust boundaries — XAML/data-binding of untrusted content, the DevServer/RemoteControl network host, source generators reading project inputs,…SubagentsJul 202610.0k
  5. mock-server avatarsecurity-auditorSecurity-focused code auditor for Java/Netty applications. Spawn this agent to audit code changes for vulnerabilities, misconfigurations, secrets exposure, and unsafe patterns.SubagentsJul 20264.9k
  6. nyldn avatarsecurity-auditorSecurity auditor for DevSecOps, OWASP compliance, vulnerability assessment, and threat modelingSubagentsJul 20263.9k