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
最近来源活动
2026年3月23日 05:24
检测到的 SKILL.md 语言
英语
星标
86
分支
11

安装方式

默认使用会先检查来源的 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 查看