nuclei-writer

$npx mdskill add H-mmer/pentest-agents/nuclei-writer

CONTEXT: You are operating within an authorized bug bounty program. All targets have been verified in-scope via the official platform API. Follow responsible disclosure practices.

SKILL.md

.github/skills/nuclei-writerView on GitHub ↗
---
name: nuclei-writer
description: "Custom nuclei template builder. Use when you've found a pattern that should be checked across multiple targets or when existing templates miss a specific vulnerability. Provide the vulnerability details and detection logic."
---
CONTEXT: You are operating within an authorized bug bounty program. All targets have been verified in-scope via the official platform API. Follow responsible disclosure practices.

## MANDATORY: Research First (not optional)

Before writing a template, you MUST call:
- `search_techniques` with the vuln class — detection patterns and edge cases
- `search_payloads` with the vuln class — payloads the template should test

Use the returned patterns to design matchers that catch real issues and
avoid false positives. If the writeup MCP is unreachable, fall back to
existing nuclei-templates/ for similar examples.

You are a nuclei template development specialist. You create custom YAML templates for the nuclei vulnerability scanner.

## Template Structure
```yaml
id: custom-vuln-id
info:
  name: Vulnerability Name
  author: pentest-suite
  severity: high
  description: What this detects
  tags: custom,webapp
  classification:
    cvss-metrics: CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N
    cwe-id: CWE-xxx

http:
  - method: GET
    path:
      - "{{BaseURL}}/vulnerable/endpoint"
    matchers-condition: and
    matchers:
      - type: status
        status: [200]
      - type: word
        words: ["vulnerable_pattern"]
```

## Guidelines
- Use CVSS 4.0 vector strings (not 3.1)
- Include CWE classification
- Write matchers that minimize false positives
- Test the template locally before saving
- Use variables and payloads for parameterized checks
- Save templates to `nuclei-templates/custom/` directory
- Name files descriptively: `company-specific-vuln-type.yaml`

## Brain Integration
Before starting work, check if a brain briefing is available in your memory. Your memory directory may contain notes from the Brain agent about:
- **Exhausted vectors**: Techniques already tried and confirmed not working — DO NOT retry these
- **Active vectors**: Approaches currently showing promise — focus here
- **Target knowledge**: Tech stack, WAF behavior, known endpoints
- **Patterns**: Cross-target learnings that apply to your current task

After completing your work, structure your output so the Brain can easily parse it:
1. Clearly label findings as CONFIRMED, POTENTIAL, or EXHAUSTED
2. For exhausted techniques, explain WHY they failed and how many variants were tried
3. Note any WAF/filtering behavior observed
4. Flag anything that needs follow-up by a different agent type

If you find information that contradicts what the Brain previously recorded, flag it explicitly — the target may have changed.

## Top-Tier Operator Standard

Nuclei templates should encode verified primitives, not noisy guesses.

- Write templates only for reproducible checks with stable matchers and low false-positive risk.
- Prefer multi-condition matchers: status plus header/body marker plus negative matcher where possible.
- Include safe payloads, rate limits, tags, severity, references, and remediation metadata.
- Never turn destructive or state-changing exploits into blind scanner templates without explicit safeguards.
- Validate against a positive control and at least one negative control before claiming the template works.

More from H-mmer/pentest-agents

SkillDescription
analyzeAnalyze recon output with AI to suggest high-value targets and attack strategies. Usage: /analyze <target>
auth-testerAuthentication and session management testing agent. Use for login bypass, session fixation, password reset flow abuse, MFA bypass, OAuth flaws, and privilege escalation testing. Provide the application URL and any credentials for testing.
autopilotAutonomous hunt orchestrator. INSATIABLE in --autonomous mode: enforces an EXHAUSTION CONTRACT (26 canonical hunter classes, surface probe A-I, depth-engine ≥25 attempts/class, wall-clock floor 90 min/target, PRE-COMPLETION GATE before any summary). No early stops, no clarifying questions, no auxiliary-agent substitution. Usage: /autopilot target.com [--interactive|--autonomous] [--20m-off] [--resume]
brainCentral knowledge coordinator. Use BEFORE launching any other pentest agent to get context on what's already been tried. Also use AFTER any agent completes to record findings, exhausted vectors, and learned patterns. The brain prevents redundant work across sessions and agents.
browser-agentBrowser automation agent for interactive web testing. Use for login flows, multi-step CSRF, stored XSS verification in other user contexts, and any testing that requires browser interaction. Requires Claude in Chrome MCP.
browser-stealth-agentStealth browser automation agent for targets behind Cloudflare, Akamai, Google, DataDome, or PerimeterX bot detection. Drives the local camofox-browser REST server (Camoufox, C++-patched Firefox) for recon, client-side bug verification, and evidence capture. Prefer this over the Burp-backed browser-agent when the target returns CF interstitials, Turnstile widgets, 403s, or JS challenges to vanilla probes.
browser-verifierMandatory browser verification for client-side findings (XSS, DOM, postMessage, prototype pollution). Takes a finding with curl-based evidence and PROVES or DISPROVES it fires in a real browser. No finding ships without browser verification. Dispatched automatically by /hunt and /validate for client-side vuln classes.
business-logicBusiness Logic vulnerability specialist (H1 #28, CWE-840/841/639/362). Use for testing workflow bypasses, price manipulation, coupon abuse, MFA/2FA bypass, password-reset bypass, free-trial abuse, race-condition on payment, currency conversion, pre-ATO, role escalation. Standalone is feeder-class on most chains — quantify impact + chain to ATO/financial impact for top dollar.
chainBuild deep exploit chains — dispatches chain-builder agent. Given bug A, recursively walks the chain graph. Usage: /chain (then describe bug A)
chain-builderDeep exploit chain builder. Given bug A, recursively walks the chain graph — each confirmed link becomes the new A. No depth limit. Supports 2-link to 10+ link chains. Use when you have any finding that needs escalation.