Report
Generate a NullPointer Studio styled PDF penetration test report from findings.json. Produces a professional dark-themed PDF with executive summary, risk dashboard, per-finding cards with business risk, remediation summary, and clean controls section.From its SKILL.md
npx -y skills add ShulkwiSEC/bb-huge --skill reportAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 18 stars18 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
9.8 KB, ~2.5k tokens by cl100k_base, as published. Nobody here has run it
NullPointer Studio Pentest Report Generator
Purpose
Read findings.json from the current pentest session and generate a complete, client-ready penetration test report as a styled PDF. The report follows the NullPointer Studio dark theme with healthcare-aware business risk language per finding.
Load refs/style.md for the full CSS specification and color palette before writing any HTML.
Tools Available
| Tool | Use for |
|---|---|
Read | Read findings.json, session.json, pocs/*.http files |
Bash | Run python3 report_generator.py to produce the PDF |
Write | Write the generated Python script |
report(action="note", ...) | Log generation decisions |
Workflow
Step 0 — Collect inputs
-
Determine the
findings.jsonpath:- If
$ARGUMENTSprovides a path, use it - Otherwise use
./findings.json(repo root)
- If
-
Read
findings.json— extract all entries wheretype == "finding"(skipdiagramandnoteentries). For each finding, capture:id,title,severity,target,description,evidence,tool_usedreproduction(command + steps) if presentremediation(diff / before / after / verification) if presentcveif present
-
Read
session.jsonif it exists — extract:target(base URL)depthstart_time(format as date for report)skill(used as engagement type)
-
Scan
pocs/for.httpfiles — map each file to its finding by matching filename keywords against finding titles. -
Call
report(action="note", ...)with: finding count by severity, target, output path.
Step 1 — Deduplicate and classify findings
Group findings by severity. Within each group, deduplicate on normalized title (same title = same finding, keep the one with more evidence). Sort order for report:
CRITICAL → HIGH → MEDIUM → LOW → INFO
Compute stat box counts:
- Count findings in each severity bucket
- Total = sum of all
Step 2 — Write the generator script
Write a Python script report_generator.py to the repo root. The script must:
-
Import
json,base64,html,pathlib.Path,datetime,weasyprint -
Embed the NullPointer Studio CSS from
refs/style.mdverbatim asCSS_STR -
Load the logo:
LOGO_PATH = Path("/Users/riccardo.tencate/Desktop/agent-smith/templates/FullLogo_Transparent.png") with open(LOGO_PATH, "rb") as f: LOGO_SRC = "data:image/png;base64," + base64.b64encode(f.read()).decode() -
Define
SEV_METAdict:SEV_META = { "critical": {"label": "CRITICAL", "color": "#ff4d6d", "bg": "rgba(255,77,109,0.12)", "border": "#ff4d6d"}, "high": {"label": "HIGH", "color": "#ff8c42", "bg": "rgba(255,140,66,0.12)", "border": "#ff8c42"}, "medium": {"label": "MEDIUM", "color": "#ffd166", "bg": "rgba(255,209,102,0.1)", "border": "#ffd166"}, "low": {"label": "LOW", "color": "#5bf29b", "bg": "rgba(91,242,155,0.08)", "border": "#5bf29b"}, "info": {"label": "INFO", "color": "#7b78ff", "bg": "rgba(123,120,255,0.08)", "border": "#7b78ff"}, } -
Define helper functions:
def esc(s): return html.escape(str(s)) def badge(sev): ... # colored inline badge span def code(text): ... # <pre class="code-block"><code>...</code></pre> -
Define
finding_section(np_id, severity, title, owasp, asvs, endpoint, auth, confirmed, description, business_risk, evidence, steps, remediation)— seerefs/style.mdfor the exact HTML structure. -
Build the full HTML document (cover page → stat boxes → exec summary → scope → risk dashboard → findings → remediation table → clean controls) and write it via
weasyprint.
Script skeleton:
#!/usr/bin/env python3
import json, base64, html as html_mod, datetime
from pathlib import Path
from weasyprint import HTML as WeasyprintHTML
BASE_DIR = Path(".")
OUTPUT = BASE_DIR / "report_{target_slug}_{date}.pdf"
# ... helpers, CSS, content sections ...
if __name__ == "__main__":
html_content = build_html()
Path("report.html").write_text(html_content, encoding="utf-8")
WeasyprintHTML(string=html_content, base_url=str(BASE_DIR)).write_pdf(str(OUTPUT))
print(f"PDF → {OUTPUT}")
Step 3 — Populate report sections
Cover page
[Logo — 180px height]
CONFIDENTIAL (red monospace badge)
Penetration Test Report (28pt Chakra Petch bold)
{target domain} (14pt green Chakra Petch)
───────────────────────────────
Client | {client name}
Target | {base URL}
Test type | Web App Pentest + White-Box Code Review
Framework | {detected framework if known}
Test date | {date}
Report date | {today}
Prepared by | NullPointer Studio
Version | 1.0
Stat boxes (one per severity)
Show counts for CRITICAL, HIGH, MEDIUM, LOW, INFO, and Total. Color each number with the severity accent color. Only include severity boxes that have at least 1 finding — always show Total.
Executive Summary
Write a 3–4 paragraph summary covering:
- What was tested, what methodology, what environment
- The most critical finding(s) — name them by NP-ID and title, explain the real impact in one sentence each
- Medium/Low/Info summary in aggregate (count + theme)
- What was found to be solid (clean controls) — 1–2 sentences
Do NOT use generic templates — derive every sentence from the actual findings in findings.json. Healthcare impact language where relevant.
Risk Dashboard table
Columns: ID | Severity | Title | OWASP | Status
Show all findings in severity order. Use badge(sev) for the severity cell. Status = "Confirmed" for all non-info findings, "Informational" for info.
Finding cards
For each finding, render a card using finding_section(...). Map findings.json fields as follows:
| Card field | Source |
|---|---|
| np_id | Assign sequentially: NP-001, NP-002, ... in severity order |
| severity | finding.severity |
| title | finding.title |
| owasp | finding.owasp if present, else derive from category (see mapping below) |
| asvs | finding.asvs if present, else "—" |
| endpoint | finding.target (strip base URL if possible) |
| auth | Infer from description ("Yes" if mentions session/auth, "No" if unauthenticated) |
| confirmed | "Yes — live PoC" if poc file exists, "Yes — code review" if code-only, else "Yes" |
| description | finding.description — wrap in <p> tags, convert code blocks to code() helper |
| business_risk | <div class='risk-box'><strong>Impact:</strong> ...</div> — derive from description; if healthcare context: reference GDPR/AVG, WBGO, PHI, care continuity |
| evidence | finding.evidence + PoC file content if available |
| steps | finding.reproduction.steps if present, else derive 3-step reproduction from description |
| remediation | finding.remediation code/diff if present, else derive from description |
OWASP category mapping (use if not explicit in finding):
| Keywords in title/description | OWASP |
|---|---|
| injection, sqli, xss, ssti, xxe | A03:2021 — Injection |
| auth, password, session, token, mfa, 2fa | A07:2021 — Identification and Authentication Failures |
| access control, idor, privilege, admin | A01:2021 — Broken Access Control |
| rate limit, config, header, tls, cors | A05:2021 — Security Misconfiguration |
| upload, file, deserialization | A04:2021 — Insecure Design |
| api, endpoint, no auth | API2:2023 — Broken Authentication |
| crypto, hash, weak | A02:2021 — Cryptographic Failures |
Remediation Summary table
Columns: ID | Severity | Title | Priority | Effort | Fix (one-line)
Assign priority based on severity:
- CRITICAL → P0 — Immediate
- HIGH → P0 — Immediate
- MEDIUM → P2 — Next sprint (or P1 — This sprint for the most impactful)
- LOW → P3 — Milestone or P4 — Backlog
- INFO → — (no priority)
Effort: Low (config change, 1-liner fix), Medium (refactor needed), High (architecture change).
Clean controls
If session.json or the findings list contains explicit "tested clean" notes, include a "Controls Tested — No Issues Found" table. If no clean controls are documented, omit this section.
Step 4 — Generate the PDF
python3 report_generator.py
If weasyprint is not installed: pip install weasyprint first.
After generation, print:
Report generated:
PDF → ./report_{target}_{date}.pdf
HTML → ./report_{target}_{date}.html
Findings: {N} total ({crit} critical, {high} high, {med} medium, {low} low, {info} info)
Rules
- Never invent findings — only include what is in
findings.json - Business risk is mandatory for every finding — derive from the actual finding; never write "could potentially" — write what an attacker concretely achieves
- NP-IDs must be sequential in severity order (NP-001 = most severe)
- INFO findings get a simplified card: Description + Business Risk + Recommendations only (no Evidence/Steps headers unless evidence is meaningful)
- Logo path is always
/Users/riccardo.tencate/Desktop/agent-smith/templates/FullLogo_Transparent.png - Output filename:
report_{target_slug}_{YYYY-MM-DD}.pdfwhere target_slug = domain with dots replaced by underscores - weasyprint is the only supported PDF engine — do not use pdfkit, xhtml2pdf, or headless Chrome
- Load
refs/style.mdbefore writing any HTML or CSS — never invent new colors or fonts
What ships with it: 1 file
12.9 KB alongside SKILL.md
refs/
- style.md12.9 KB