Skip to main content

mitm-subdomains

Enumerate subdomains from captured traffic. Use when user asks about subdomain discovery, attack surface mapping, or domain reconnaissance.

설치로 이동

소스 정보

저장소
instavm/security-skills
최근 소스 활동
2026년 3월 23일 05:24
감지된 SKILL.md 언어
영어
스타
86
포크
11

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
mitm-subdomains
description
Enumerate subdomains from captured traffic. Use when user asks about subdomain discovery, attack surface mapping, or domain reconnaissance.
# Enumerate Subdomains from Traffic Analyze the mitmproxy dump (log.txt) and enumerate subdomains 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 > ``` ## Tasks ### 1. Extract Seen Subdomains - List all subdomains from captured traffic - Note the purpose of each (API, CDN, auth, etc.) ### 2. Identify Patterns - Common prefixes: api., admin., staging., dev. - Environment indicators: prod., uat., test. - Service patterns: auth., pay., cdn. ### 3. Suggest More to Discover Based on patterns, suggest testing: ``` api, admin, dashboard, portal, internal, staging, dev, test, qa beta, alpha, demo, sandbox, uat, preprod, prod mail, email, smtp, mx, webmail cdn, static, assets, media, images, files db, database, mysql, postgres, mongo, redis auth, login, sso, oauth, identity pay, payment, checkout, billing, invoice mobile, m, app, ios, android docs, documentation, help, support, wiki analytics, metrics, stats, monitor, grafana jenkins, gitlab, github, ci, build vpn, remote, gateway, proxy console, panel, backend, cms, manage ``` ## Output Format For each discovered subdomain: - **Subdomain**: Full URL - **Type**: API/CDN/Auth/Admin/etc. - **Visibility**: Internal/External facing - **Risk**: Flag sensitive ones ## Also Check For - Cloud storage buckets (s3, gcs, azure blob) - Third-party services with company data - Debug/test endpoints that shouldn't be public - Old/deprecated subdomains still active
GitHub에서 보기