Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

Android-RE

Android-RE 收录了来自 Heretek-AI 的 12 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
12
Stars
2
更新
2026-06-05
Forks
1
职业覆盖
2 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

android-re-masvs-report
信息安全分析师

Use when the user asks for a MASVS-aligned report, an OWASP MASTG audit, or a formal "is this app secure" assessment. Triggers: "MASVS report", "MASTG audit", "OWASP compliance check", "security audit of <path>". Phase 1 ships a stub; the real implementation lands in Phase 4 with the android-re-triage orchestrator MCP server.

2026-06-05
android-re-native-triage
信息安全分析师

Use when the user wants to assess the native (JNI / C / C++) code inside an APK, audit hardening on .so libraries, or get a report on what a native library does. Triggers: "native triage", "check the .so", "audit libfoo.so", "what does libnative do", "is the native code hardened", "PIE / RELRO / NX on this library", "check for packers / obfuscation in libfoo". Do NOT use for pure DEX analysis (use android-re-static-triage) or for dynamic analysis (use android-re-dynamic-hook).

2026-06-05
android-re-secrets-scan
信息安全分析师

Use when the user wants to find hard-coded secrets in an APK: API keys, AWS / GCP / Azure credentials, JWTs, private keys, hard- coded URLs, IP addresses, or any other sensitive data embedded in the decompiled source. Triggers: "scan for secrets", "find API keys", "find AWS credentials", "check for hard-coded secrets", "scan the APK for sensitive data", "find URLs in the source". Do NOT use for runtime data leak detection (Phase 3) or for network interception (use android-re-network-intercept).

2026-06-05
android-re-static-triage
信息安全分析师

Use when the user wants to triage an APK, perform a 5-minute static overview, or get a high-level "what does this app do" summary without running it. Triggers: "triage this APK", "what does this app do", "static overview of <path>", "analyze <path>.apk", "give me a quick security summary of this APK". Do NOT use for dynamic analysis, Frida hooking, native binary inspection, or repackaging — those have their own skills.

2026-06-05
android-re-triage-orchestrator
信息安全分析师

Use when the user wants the full triage workflow: drop in an APK, run a MASVS-aligned multi-step analysis, and produce a report. This is the master skill that composes every other Android-RE skill and tool. Triggers: "triage this APK end-to-end", "give me a full security report on <path>", "run the orchestrator", "comprehensive triage", "MASVS audit of <app>". Do NOT use this for narrow, single-purpose tasks (use android-re-static-triage, -native-triage, -decompile, -dynamic-hook, etc. directly).

2026-06-05
android-re-decompile
软件开发工程师

Use when the user wants to read the implementation of a specific method or class, pull Java/smali source for a function, or understand what a particular entry point does. Triggers: "decompile this method", "show me the source of <Class>.<method>", "what does com.example.Foo.bar do", "read <FQCN>", "smali for <method>". Do NOT use for a project-wide overview — use android-re-static-triage for that.

2026-06-05
android-re-dynamic-hook
软件开发工程师

Use when the user wants to hook a method at runtime on a connected Android device, observe arguments/return values, trace execution, or dump runtime state. Triggers: "hook this method", "frida hook on <class>", "trace <method>", "watch this call", "intercept <function>", "runtime trace", "find what calls X". Requires a rooted device with frida-server running. Do NOT use for pure static analysis (use android-re-static-triage) or for native binary-only inspection (use android-re-native-triage).

2026-06-05
android-re-frida-script-author
软件开发工程师

Use when the user wants to write a custom Frida script (not just a one-off hook) and needs help authoring it. Triggers: "write a Frida script", "I need a custom frida agent", "help me write a hook for <case>", "tracer for <method>", "build a frida gadget". Loads the user-described agent into a session, verifies it compiles, and offers iteration. Requires a rooted device with frida-server running.

2026-06-05
android-re-gradle-rebuild
软件开发工程师

Turn an APK into a buildable Gradle project. Composes mcp__android-re-static__open_project, decompile_apk, decode_apk, jadx_cleanup_workdir, and create_gradle_project into a 6-step workflow that produces `./gradlew :app:assembleDebug` output.

2026-06-05
android-re-network-intercept
信息安全分析师

Use when the user wants to capture and inspect an app's network traffic end-to-end. Sets up an MITM proxy (Burp, mitmproxy, Charles) on the host, routes device traffic through it, and uses a Frida SSL-pinning bypass to defeat certificate pinning. Triggers: "intercept the traffic from <app>", "set up MITM", "capture HTTPS from <package>", "Burp this app", "see what <app> sends over the network". Requires a rooted device with frida-server, plus a running proxy on the host.

2026-06-05
android-re-repackage
软件开发工程师

Use when the user wants to modify an APK and produce a new signed build. Common scenarios: add a debuggable flag, set allowBackup=true, change the network security config to trust a user CA, repackage with Frida gadget, or rebuild after a smali-level edit. Triggers: "modify the manifest", "set debuggable to true", "patch the APK", "repackage for testing", "rebuild and sign", "trust user CAs". Do NOT use this for static analysis (use android-re-static-triage) or for dynamic analysis (use android-re-dynamic-hook).

2026-06-05
android-re-sslpinning-bypass
软件开发工程师

Use when the user wants to bypass SSL/TLS certificate pinning on a running app to intercept HTTPS traffic (e.g. with Burp or mitmproxy). Triggers: "bypass SSL pinning", "unpin cert", "trust user CA", "MITM this app", "intercept HTTPS from <package>", "ssl-pinning bypass on <app>". Requires a rooted device with frida-server running. The app must support installing user CAs (or be repackaged with android-re-repackage first).

2026-06-05
Android-RE GitHub Agent Skills | SkillsMP