vapt-report-pdf

vapt-report-pdf is a skill for Claude Code, Codex from bhuvangupta/vapt-claude. It costs 0 tokens per session (942 once invoked), scanned A, original, MIT.

A skill that turns vulnerability-assessment and penetration-testing findings into a PDF report. It uses existing VAPT output files and a Python PDF library.

In plain words
What is it for?
Use it after running a VAPT report to create a scored PDF covering the target, categories, severity levels, CVSS details, and findings.
Why use it?
It removes the need to manually collect findings, calculate scores, and format a security report.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it after running a VAPT report to create a scored PDF covering the target, categories, severity levels, CVSS details, and findings.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bhuvangupta/vapt-claude/vapt-report-pdf
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add bhuvangupta/vapt-claude --skill vapt-report-pdf
Clone the repo
git clone --depth 1 https://github.com/bhuvangupta/vapt-claude

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for vapt-report-pdf

README.md
[![agentmods](https://agentmods.dev/badge/skills/bhuvangupta/vapt-claude/vapt-report-pdf/github.svg)](https://agentmods.dev/skills/bhuvangupta/vapt-claude/vapt-report-pdf)
Your own site
<a href="https://agentmods.dev/skills/bhuvangupta/vapt-claude/vapt-report-pdf"><img src="https://agentmods.dev/badge/skills/bhuvangupta/vapt-claude/vapt-report-pdf/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for vapt-report-pdf

Your own site · 80×15
<a href="https://agentmods.dev/skills/bhuvangupta/vapt-claude/vapt-report-pdf"><img src="https://agentmods.dev/badge/skills/bhuvangupta/vapt-claude/vapt-report-pdf.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 942 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00942
Opus 5 $0.00000 $0.00471
Sonnet 5 $0.00000 $0.00188
Haiku 4.5 $0.00000 $0.00094

Measured 10d ago against content hash 268909e03518, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

vapt-report-pdf scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/vapt-report-pdf/SKILL.md · 157 lines

How it starts

The opening of the file, as written. The whole thing — 157 lines — stays where its author put it; the contents beside it link to each section on GitHub.

PDF Report Generation

When Invoked

The user runs /vapt report-pdf <url>.

Prerequisites

  • Python 3.8+
  • reportlab package installed (pip install reportlab)
  • VAPT output files in the current directory (ideally run /vapt report first)

Behavior

Generate a professional PDF report from VAPT findings using the scripts/vapt_report_pdf.py script.

Phase 1: Data Collection

Same as vapt-report -- scan for all VAPT output files, parse findings, calculate scores.

Phase 2: PDF Generation

2.1 Compile Report Data

Assemble a JSON structure with all report data:

{
    "target": "example.com",
    "date": "2026-03-19",
    "tester": "...",
    "authorization": "Pentest engagement",
    "overall_score": 42,
    "overall_rating": "Poor",
    "categories": [
        {"name": "Injection", "weight": 20, "score": 15, "findings_count": {"critical": 2, "high": 1}},
        ...
    ],
    "findings": [
        {
            "id": "FINDING-001",
            "title": "SQL Injection in /api/users",
            "severity": "Critical",
            "cvss_score": 9.8,
            "cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H",
            "cwe": "CWE-89",
            "owasp": "A03:2021",
            "url": "/api/users?id=1",
            "parameter": "id",
            "description": "...",
            "steps": ["..."],
            "impact": "...",
            "remediation": "..."
        },
        ...
    ],
    "scope": {"in_scope": [...], "out_of_scope": [...]},
    "tools_used": [...]
}

2.2 Run PDF Script

python3 <skills_dir>/scripts/vapt_report_pdf.py --input report_data.json --output VAPT-REPORT.pdf

2.3 PDF Structure

The PDF report includes:

Cover Page:

  • "Vulnerability Assessment & Penetration Test Report"
  • Target URL
  • Date
  • Authorization reference
  • Confidentiality notice

Table of Contents:

  • Auto-generated with page numbers

Executive Summary (Page 1-2):

  • Security Posture Score gauge (visual, color-coded)
  • Finding count by severity (bar chart)
  • Category score breakdown (radar chart or table)
  • Top 3 risks highlighted
  • Key recommendations

Read the full file on GitHub · 157 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 157 lines · 0 tokens per session scan A 268909e03518

Subscribe to this mod's changes

vapt-report-pdf is a skill published in the GitHub repository bhuvangupta/vapt-claude (1 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 942 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

analyzing-pdf-malware-with-pdfid

Analyzes malicious PDF files using PDFiD, pdf-parser, and peepdf to identify embedded JavaScript, shellcode, exploits, and suspicious objects without opening the document. Determines the attack vector and extracts embedded payloads for further analysis. Activates for requests involving PDF malware analysis, malicious…

mukul975/Anthropic-Cybersecurity-Skills · 84 tokens

nsfc-budget

A tool that creates an editable LaTeX budget justification and renders it as a PDF for an NSFC research-funding application. NSFC is China’s National Natural Science Foundation, and a budget justification explains why proposed costs are needed.

huangwb8/ChineseResearchLaTeX · 138 tokens

nsfc-ref-alignment

A read-only checker for references in NSFC LaTeX proposals. It compares citations with the bibliography and flags missing entries, field errors, and possible mismatches between claims and papers.

huangwb8/ChineseResearchLaTeX · 90 tokens

add-pdf-report

Internal implementation skill invoked by /add-native for app-generated PDF report workflows using expo-print and, when present, expo-sharing.

microsoft/power-platform-skills · 30 tokens

add-pdf-viewer

Internal implementation skill invoked by /add-native for native PDF control workflows. Handles HTTPS and file URI PDF viewing with @microsoft/power-apps-native-pdf-viewer 0.2.9+.

microsoft/power-platform-skills · 47 tokens

compile-latex

Compile a Beamer LaTeX slide deck with XeLaTeX (3 passes + bibtex). Use when user says "compile", "build the slides", "rebuild the PDF", "run latex", "render the tex", or asks why a .tex file isn't producing a PDF. Operates on Slides/.tex.

pedrohcgs/claude-code-my-workflow · 73 tokens