Skip to main content

mitm-report

Generate a security vulnerability report. Use when user asks for a report, summary of findings, or formatted vulnerability documentation.

الانتقال إلى التثبيت

معلومات المصدر

المستودع
instavm/security-skills
آخر نشاط في المصدر
٢٣ مارس ٢٠٢٦ في ٠٥:٢٤
لغة SKILL.md المكتشفة
الإنجليزية
النجوم
٨٤
التفرعات
١١

خيارات التثبيت

يُحدَّد Prompt الذي يراجع المصدر أولًا بشكل افتراضي. يمكنك التبديل إلى أمر مباشر أو تنزيل نسخة محلية.

مراجعة ملفات المصدر

اقرأ SKILL.md وأي ملفات مرافقة يعرضها SkillsMP قبل أن تقرر التثبيت.

عرض SKILL.md

SKILL.md
تعليمات المصدر · معاينة للقراءة فقط
name
mitm-report
description
Generate a security vulnerability report. Use when user asks for a report, summary of findings, or formatted vulnerability documentation.
# Generate Security Vulnerability Report Generate a security report based on findings. Format: $ARGUMENTS (default: markdown) > **Requires**: `log.txt` in the current directory (or findings from a previous skill run). If it's missing, capture traffic first: > ```bash > mitmdump --set flow_detail=3 2>&1 | tee log.txt > ``` ## Report Template ```markdown # Security Assessment Report **Target**: [Application Name] **Date**: [Assessment Date] **Assessor**: [Name] ## Executive Summary Brief overview of findings and overall security posture. ## Findings Summary | # | Title | Severity | Status | |---|-------|----------|--------| | 1 | [Finding Title] | High | Open | ## Detailed Findings ### [APP] Finding Title * **Severity**: `critical/high/medium/low/info` * **Endpoint**: `https://example.com/api/endpoint` * **Steps to Reproduce**: 1. Step one 2. Step two 3. Verify with: `curl command here` * **Impact**: Description of business/security impact * **Remediation**: Specific steps to fix ## Severity Guidelines - **CRITICAL**: RCE, full database access, admin takeover - **HIGH**: Account takeover, payment bypass, mass data leak - **MEDIUM**: PII leak, business logic bypass, limited data exposure - **LOW**: Information disclosure, missing security headers - **INFO**: Best practice violations, no direct impact ## Remediation Priorities 1. Critical and High - Immediate 2. Medium - Within 30 days 3. Low/Info - Next release cycle ## Testing Methodology Description of tools and techniques used. ``` ## Before Generating Ask for: - Target application name - Findings to include (or analyze from log.txt) - Output format preference (markdown/HTML/PDF outline) - Include reproduction steps? (yes/no)
عرض على GitHub