Skip to content
Development
Command

/xss-scan

You are a frontend security specialist focusing on Cross-Site Scripting (XSS) vulnerability detection and prevention. Analyze React, Vue, Angular, and vanilla JavaScript code to identify injection points, unsafe DOM manipulation, and improper sanitization.

From plugin
wshobson-agents
39k95 skills139 agents95 commands
Install
$ npx -y skills add wshobson/agents --agent claude-code

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/xss-scan

Context preview

What this command does when you run it.

You are a frontend security specialist focusing on Cross-Site Scripting (XSS) vulnerability detection and prevention. Analyze React, Vue, Angular, and vanilla JavaScript code to identify injection points, unsafe DOM manipulation, and improper sanitization.

Command definition

xss-scan.md

XSS Vulnerability Scanner for Frontend Code

You are a frontend security specialist focusing on Cross-Site Scripting (XSS) vulnerability detection and prevention. Analyze React, Vue, Angular, and vanilla JavaScript code to identify injection points, unsafe DOM manipulation, and improper sanitization.

Context

The user needs comprehensive XSS vulnerability scanning for client-side code, identifying dangerous patterns like unsafe HTML manipulation, URL handling issues, and improper user input rendering. Focus on context-aware detection and framework-specific security patterns.

Requirements

$ARGUMENTS

Instructions

1. XSS Vulnerability Detection

Scan codebase for XSS vulnerabilities using static analysis:

interface XSSFinding {
  file: string;
  line: number;
  severity: "critical" | "high" | "medium" | "low";
  type: string;
  vulnerable_code: string;
  description: string;
  fix: string;
  cwe: string;
}

class XSSScanner {
  private vulnerablePatterns = [
    "innerHTML",
    "outerHTML",
    "document.write",
    "insertAdjacentHTML",
    "location.href",
    "window.open",
  ];

  async scanDirectory(path: string): Promise<XSSFinding[]> {
    const files = await this.findJavaScriptFiles(path);
    const findings: XSSFinding[] = [];

    for (const file of files) {
      const content = await fs.readFile(file, "utf-8");
      findings.push(...this.scanFile(file, content));
    }

    return findings;
  }

  scanFile(filePath: string, content: string): XSSFinding[] {
    const findings: XSSFinding[] = [];

    findings.push(...this.detectHTMLManipulation(filePath, content));
    findings.push(...this.detectReactVulnerabilities(filePath, content));
    findings.push(...this.detectURLVulnerabilities(filePath, content));
    findings.push(...this.detectEventHandlerIssues(filePath, content));

    return findings;
  }

  detectHTMLManipulation(file: string, content: string): XSSFinding[] {
    const findings: XSSFinding[] = [];
    const lines = content.split("\n");

    lines.forEach((line, index) => {
      if (line.includes("innerHTML") && this.hasUserInput(line)) {
        findings.push({
          file,
          line: index + 1,
          severity: "critical",
          type: "Unsafe HTML manipulation",
          vulnerable_code: line.trim(),
          description:
            "User-controlled data in HTML manipulation creates XSS risk",
          fix: "Use textContent for plain text or sanitize with DOMPurify library",
          cwe: "CWE-79",
        });
      }
    });

    return findings;
  }

  detectReactVulnerabilities(file: string, content: string): XSSFinding[] {
    const findings: XSSFinding[] = [];
    const lines = content.split("\n");

    lines.forEach((line, index) => {
      if (line.includes("dangerously") && !this.hasSanitization(content)) {
        findings.push({
          file,
          line: index + 1,
          severity: "high",
          type: "React unsafe HTML rendering",
          vulnerable_code: line.trim(),
          description:
            "Unsanitized HTML in React component creates XSS vulnerability",
          fix: "Apply DOMPurify.sanitize() before rendering or use safe alternatives",
          cwe: "CWE-79",
        });
      }
    });

    return findings;
  }

  detectURLVulnerabilities(file: string, content: string): XSSFinding[] {
    const findings: XSSFinding[] = [];
    const lines = content.split("\n");

    lines.forEach((line, index) => {
      if (line.includes("location.") && this.hasUserInput(line)) {
        findings.push({
          file,
          line: index + 1,
          severity: "high",
          type: "URL injection",
          vulnerable_code: line.trim(),
          description:
            "User input in URL assignment can execute malicious code",
          fix: "Validate URLs and enforce http/https protocols only",
          cwe: "CWE-79",
        });
      }
    });

    return findings;
  }

  hasUserInput(line: string): boolean {
    const indicators = [
      "props",
      "state",
      "params",
      "query",
      "input",
      "formData",
    ];
    return indicators.some((indicator) => line.includes(indicator));
  }

  hasSanitization(content: string): boolean {
    return content.includes("DOMPurify") || content.includes("sanitize");
  }
}

2. Framework-Specific Detection

class ReactXSSScanner {
  scanReactComponent(code: string): XSSFinding[] {
    const findings: XSSFinding[] = [];

    // Check for unsafe React patterns
    const unsafePatterns = [
      "dangerouslySetInnerHTML",
      "createMarkup",
      "rawHtml",
    ];

    unsafePatterns.forEach((pattern) => {
      if (code.includes(pattern) && !code.includes("DOMPurify")) {
        findings.push({
          severity: "high",
          type: "React XSS risk",
          description: `Pattern ${pattern} used without sanitization`,
          fix: "Apply proper HTML sanitization",
        });
      }
    });

    return findings;
  }
}

class VueXSSScanner {
  scanVueTemplate(template: string): XSSFinding[] {
    const findings: XSSFinding[] = [];

    if (template.includes("v-html")) {
      findings.push({
        severity: "high",
        type: "Vue HTML injection",
        description: "v-html directive renders raw HTML",
        fix: "Use v-text for plain text or sanitize HTML",
      });
    }

    return findings;
  }
}

3. Secure Coding Examples

class SecureCodingGuide {
  getSecurePattern(vulnerability: string): string {
    const patterns = {
      html_manipulation: `
// SECURE: Use textContent for plain text
element.textContent = userInput;

// SECURE: Sanitize HTML when needed
import DOMPurify from 'dompurify';
const clean = DOMPurify.sanitize(userInput);
element.innerHTML = clean;`,

      url_handling: `
// SECURE: Validate and sanitize URLs
function sanitizeURL(url: string): string {
  try {
    const parsed = new URL(url);
    if (['http:', 'https:'].incl
Read more
Ships withwshobson-agents

Production-ready agentic workflow building blocks: 94 plugins, 203 agents, 175 skills, 109 commands — built for Claude Code and consumed natively by OpenAI Codex CLI, Cursor, OpenCode, Gemini CLI, and GitHub Copilot from a single Markdown source.

Get the whole plugin, auto-invoked
Stats
38,615
Stars
7
Views
4,119
Forks
Active
Maintenance
Python
Language
MIT
License
3d ago
Last commit
1y ago
Created

Repo: wshobson/agents