skills/by-role/security/vuln-report/SKILL.md
Write a vulnerability report. Use when the user says "vulnerability report", "vuln report", "security finding", "write up this finding", "pentest finding", "bug bounty report", "security disclosure", "CVE writeup", "document this vulnerability", "how to report a security issue", or needs to formally document a security vulnerability with evidence, impact, and remediation guidance - even if they don't explicitly say "report".
npx skillsauth add qa-aman/claude-skills vuln-reportInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Based on Penetration Testing (Georgia Weidman) and industry bug bounty standards (HackerOne, Bugcrowd). A vulnerability report is the primary deliverable of security testing. Its job is to make the reader understand the risk, believe it is real (evidence), and know exactly how to fix it. Reports that lack clear reproduction steps are ignored. Reports that lack business impact framing are deprioritized.
Weidman's rule: a finding no one acts on is a finding that didn't matter. Write for the engineer who needs to fix it AND the manager who needs to prioritize it.
Finding title: [Concise, specific title that names the vulnerability and affected component]
Good: "SQL Injection in /api/search allows unauthenticated data exfiltration"
Bad: "SQL Injection Found"
Finding ID: [VULN-001 / internal reference]
Severity: [Critical / High / Medium / Low / Informational]
CVSS Score: [e.g. 9.8 (CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H)]
CWE: [e.g. CWE-89: SQL Injection]
Affected component: [URL, endpoint, function, or system]
Discovered: [date]
Reported by: [tester name or handle]
Status: [Open / Remediated / Accepted Risk]
2-3 sentences for a non-technical reader. No jargon. Lead with impact, not with the technical detail.
[What is at risk, who is at risk, and what an attacker can do.]
Example: "The search endpoint is vulnerable to SQL injection. An unauthenticated
attacker can extract all user records from the database, including email addresses
and hashed passwords for [N] users. No special tools or skills are required."
Explain the vulnerability mechanically: what it is, why it exists, and what makes it exploitable.
Vulnerability class: [SQL Injection / XSS / IDOR / etc.]
Description:
[Explain the root cause. What input is unsanitized? What query is constructed? What check
is missing? Why is this exploitable in this specific context?]
Example: "The /api/search endpoint concatenates the `q` parameter directly into a SQL
query without parameterization:
query = "SELECT * FROM products WHERE name LIKE '%" + request.q + "%'"
The query is executed with a DB user that has SELECT access across all tables. This allows
an attacker to inject SQL that reads from arbitrary tables including the users table."
Numbered, exact, copy-pasteable. Another engineer should be able to reproduce without asking questions.
Prerequisites: [unauthenticated / authenticated as standard user / etc.]
Environment: [production URL / staging / specific version]
Steps:
1. Navigate to: https://[target]/api/search
2. Send the following request:
GET /api/search?q=test' UNION SELECT username,password,email,NULL FROM users--
Host: [target]
3. Observe the response contains user records from the `users` table:
[paste example response showing PII]
Time to reproduce: [2 minutes]
Tools required: [Browser / Burp Suite / curl]
Attach or reference:
Evidence:
- Screenshot 1: [vuln-001-request.png] - HTTP request with injection payload
- Screenshot 2: [vuln-001-response.png] - Response showing extracted user records (redacted)
- Burp file: [vuln-001.burp] - Full request/response session
Note: Real user data was not retained. Screenshots show [first name] field populated
with test values to confirm extraction was possible.
Describe the realistic worst-case scenario. Quantify where possible.
Confidentiality impact: [data exposed, e.g. all user emails and hashed passwords]
Integrity impact: [can attacker modify data? e.g. none / could update records]
Availability impact: [can attacker disrupt service? e.g. none]
Scope: [who is affected - all users / specific role / all customers]
Exploitability: [unauthenticated, no special tools required, exploitable remotely]
Business impact: [regulatory exposure, breach notification obligation, reputational risk]
Example: "An attacker can extract the full users table containing ~50,000 records.
Each record includes email, hashed password (bcrypt), and last login date.
This constitutes a notifiable breach under GDPR Article 33 if exploited."
Specific, actionable, prioritized. Include a code example where applicable.
Remediation:
Primary fix (required):
Use parameterized queries for all database operations. Replace string concatenation
with prepared statements:
# Vulnerable (current):
query = "SELECT * FROM products WHERE name LIKE '%" + request.q + "%'"
# Fixed:
query = "SELECT * FROM products WHERE name LIKE ?"
cursor.execute(query, ('%' + request.q + '%',))
Secondary controls (defense in depth):
- Restrict the DB user to the minimum required tables (principle of least privilege)
- Add input validation to reject SQL metacharacters in the search field
- Enable a WAF rule to detect SQL injection patterns in query parameters
Verification: After fix, retest with payload:
?q=test' UNION SELECT 1,2,3--
Expected: 400 error or no results. No SQL structure in response.
Remediation effort estimate: [Low / Medium / High - e.g. 2-4 hours for a developer familiar with the codebase]
1. No reproduction steps Bad: "SQL injection was found in the search endpoint." Good: Exact URL, exact payload, expected response. Reproducible in under 5 minutes.
2. Technical description without business impact Bad: "This is a reflected XSS." Good: "This allows an attacker to inject scripts that run in a victim's browser, steal session cookies, and take over their account. Delivered via a crafted link sent over email."
3. Remediation is generic Bad: "Use parameterized queries." Good: Show the vulnerable code pattern, the fixed code pattern, and what to test after the fix.
4. Evidence includes real PII Bad: Screenshot shows real user emails from extracted database. Good: Real PII redacted or replaced with test markers. Report proves exploitability without retaining actual customer data.
development
Plan a webinar end-to-end using April Dunford's Obviously Awesome positioning framework to find the topic angle that makes the webinar obviously valuable to the right audience. Produces topic positioning, abstract, speaker brief, registration page, promotion sequence, day-of run-of-show, and post-webinar follow-up. Use when the user asks to plan a webinar, virtual event, online workshop, "we need a webinar on X", host a webinar, online masterclass, or any live virtual event with promotion and follow-up. Reads ICP, services, and brand voice from knowledge/.
development
Write long-form thought leadership articles, opinion pieces, industry POV essays, and CEO/founder bylines using the Made to Stick SUCCESs framework (Chip and Dan Heath). Use when the user asks for a long-form article, executive byline, opinion piece, industry POV, manifesto, "explain our point of view on X", or wants to publish an authority-building piece (1200-2500 words). Reads brand voice and positioning from knowledge/.
development
Plan a monthly content calendar across channels using the Content Marketing Matrix (Dave Chaffey, Smart Insights) - Entertain/Inspire/Educate/Convince. Every post gets a quadrant label. The monthly calendar must hit 40% Educate, 40% Inspire+Convince, 20% Entertain. Produces a week-by-week posting schedule with topics, formats, channels, and asset links. Use when the user says "content calendar", "social calendar", "plan next month's content", "what should we post", "content plan", "editorial calendar", "schedule posts for the month", or wants a structured posting plan for LinkedIn, Twitter, email, or blog. Reads brand voice, ICP, and past learnings from knowledge/.
development
Write SEO-optimized long-form articles targeting specific keywords using the They Ask You Answer Big 5 framework (Marcus Sheridan). Articles are categorized by Big 5 type (Cost, Problems, Versus, Best/Reviews, How-To) and structured accordingly. The "answer first" rule applies to every article. Use when the user asks for an SEO article, blog post for ranking, "rank for keyword X", organic content, search-optimized post, pillar page, or content for organic traffic. Includes keyword targeting, search intent matching, internal linking suggestions, and meta tags.