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.

Ir a la instalación

Datos de origen

Repositorio
instavm/security-skills
Última actividad en el origen
23 de marzo de 2026 a las 05:24
Idioma detectado de SKILL.md
inglés
Estrellas
86
Forks
11

Opciones de instalación

De forma predeterminada está seleccionado el prompt que primero revisa el origen. Puedes cambiar a un comando directo o descargar una copia local.

Revisa los archivos de origen

Lee SKILL.md y los archivos complementarios que muestra SkillsMP antes de decidir si quieres instalarlo.

Mostrando SKILL.md

SKILL.md
Instrucciones de origen · Vista previa de solo lectura
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.
Ver en GitHub