ソース情報
- リポジトリ
- AeonDave/malskill
- ソースの最終更新活動
- 2026年6月3日 13:09
- 検出された SKILL.md の言語
- 英語
- スター
- 18
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/AeonDave/malskill --skill jadxコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Operate the MCPwn Kali/Debian MCP efficiently: manage sessions, discover catalog tools, choose synchronous, detached, or interactive execution, move files through workspace/CAS planes, establish tunnels and shells, and run GDB or Frida debugging in the MCPwn runtime or through explicit host/device transports. Use for MCPwn or Kali MCP work, pwn/CTF and dynamic-analysis sessions, remote targets, connectivity or file-transfer problems, and optional NeuroMatrix-backed emulation/debugging through MCPwn's emulation domain.
Operate the standalone, client-neutral NeuroMatrix emulation MCP: create isolated sessions, stage CAS artifacts, discover and run Unicorn/Qiling/QEMU/Renode tools, manage jobs and interactive processes, expose guest endpoints, and debug emulated targets with GDB. Use for reverse engineering, user-mode or full-system emulation, firmware/kernel/MCU analysis, guest-service rehosting, runtime-evidence collection, or as the optional emulation provider behind MCPwn or another orchestrator.
Create, implement, scaffold, migrate, or review Model Context Protocol (MCP) servers against modern MCP 2026-07-28. Use for server architecture, tool/resource/prompt contracts, stdio or Streamable HTTP transports, MRTR, optional extensions, authorization, security, and real-transport validation. Also use to isolate legacy initialization or session behavior. Do not use merely to configure an MCP client or invoke an existing server.
| name | jadx |
| description | Auth/lab ref: Android Dex-to-Java decompiler with CLI and GUI support. |
| license | Apache-2.0 |
| compatibility | Linux, macOS, Windows; Java 11+ 64-bit; release zip or package manager install. |
| metadata | {"author":"AeonDave","version":"1.0"} |
Readable Android decompilation with both CLI and GUI workflows.
Use JADX when you want to:
Use apktool when you need to edit and rebuild the APK.
# CLI decompile to folder
jadx -d out app.apk
# Open GUI for interactive analysis
jadx-gui app.apk
# Export as Gradle-like project
jadx -e -d out app.apk
| Flag | Purpose |
|---|---|
-d, --output-dir | Write decompiled output to a directory |
-e, --export-gradle | Export a Gradle-like project |
--show-bad-code | Keep inconsistent code instead of hiding it |
--deobf | Enable deobfuscation |
--single-class | Decompile only one class |
--single-class-output | Write single-class output to file or dir |
--output-format json | Emit JSON instead of Java output |
--cfg / --raw-cfg | Export control-flow graphs |
-q / -v | Quiet or verbose logging |
jadx -d out app.apk
Then inspect:
sources/ for business logicresources/AndroidManifest.xmljadx-gui app.apk
Best for:
jadx --deobf --show-bad-code -d out app.apk
Use this when normal output hides code paths or when identifiers are too mangled.
jadx --single-class com.example.auth.LoginActivity app.apk
Useful when you already know the package/class name from logs, manifest, or previous triage.
jadx-gui first for orientation, then rerun CLI with focused flags for reproducible output.jadx to apktool or direct smali edits.apktool smali or another RE tool.No bundled scripts/, references/, or assets/.
Use the official README and wiki for plugin management, GUI-specific features, and advanced renaming options.