Skip to main content

mitm-list-apis

List all APIs from mitmproxy traffic capture. Use when user asks to see APIs, endpoints, or wants an overview of captured HTTP traffic for a website or app.

インストールへ移動

ソース情報

リポジトリ
instavm/security-skills
ソースの最終更新活動
2026年3月23日 05:24
検出された SKILL.md の言語
英語
スター
86
フォーク
11

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
mitm-list-apis
description
List all APIs from mitmproxy traffic capture. Use when user asks to see APIs, endpoints, or wants an overview of captured HTTP traffic for a website or app.
# List APIs from Traffic Capture Analyze the mitmproxy dump (log.txt) and list all APIs for: $ARGUMENTS > **Requires**: `log.txt` in the current directory. If it's missing, capture traffic first: > ```bash > mitmdump --set flow_detail=3 2>&1 | tee log.txt > ``` ## Instructions 1. Search log.txt for the target domain/app 2. Extract unique API endpoints 3. Group by functionality (auth, user, payment, etc.) ## Output Format For each API found: - **Method**: GET/POST/PUT/DELETE - **Endpoint**: `/api/path` (skip domain) - **Input params**: Query params or body fields - **Response fields**: Key fields returned (concise) ## Grouping Suggestions - Authentication (login, register, OTP, token) - User Profile (profile, settings, preferences) - Transactions (orders, payments, history) - Content (products, listings, search) - Admin/Internal (if any found) If no website specified, ask which one to analyze.
GitHubで見る