security-auditor

Detect OWASP Top 10 security vulnerabilities in code and configurations.

763|165|Updated Sep 16, 2025
One-click install
npx skills add https://github.com/alirezarezvani/claude-code-tresor --skill security-auditor
Or copy as Structured Prompt for Agentโ–ผ
Please help me install this Agent Skill.
Skill: security-auditor
Source: https://github.com/alirezarezvani/claude-code-tresor/tree/main/skills/security/security-auditor
Command: npx skills add https://github.com/alirezarezvani/claude-code-tresor --skill security-auditor

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides continuous, real-time security vulnerability scanning, automatically detecting common weaknesses like SQL Injection, XSS, and insecure authentication patterns. It helps you catch critical issues early in the development cycle, reducing the risk of security breaches and costly fixes later on.

Core Features & Use Cases

  • OWASP Top 10 Coverage: Scans for patterns related to the most critical web application security risks.
  • Real-time Alerts: Provides instant feedback on vulnerabilities as you write or modify code, with severity levels and fix suggestions.
  • Use Case: You write a database query using string concatenation: const query = 'SELECT * FROM users WHERE id = ' + userId;. The skill immediately flags a CRITICAL SQL injection vulnerability, suggesting a parameterized query as a fix.

Quick Start

The skill activates automatically when code files are modified.

Write some potentially insecure code, e.g., a SQL query:

const userId = req.query.id; const sql = SELECT * FROM users WHERE id = ${userId};

The skill will instantly alert you to any detected vulnerabilities.

Frequently Asked Questions about security-auditor

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I detect SQL injection and XSS vulnerabilities in my code?โ–ผ

SQL injection and XSS vulnerabilities are detected through pattern scanning of code for unsafe string concatenation in queries and unescaped user input in templates. This Skill automatically flags these OWASP Top 10 risks in real-time as you write or modify code, surfacing severity levels and parameterized-query fixes.

Can I scan for OWASP Top 10 vulnerabilities during code review?โ–ผ

Yes. This Skill integrates into code reviews to scan for OWASP Top 10 patterns including SQL injection, XSS, authentication issues, and sensitive data exposure. It runs automatically on file changes and provides standardized alert outputs with severity tags and remediation guidance.

What happens when the Skill detects a vulnerability?โ–ผ

When a vulnerability is detected, the Skill generates real-time alerts with severity levels, identifies the specific risk category (SQL injection, XSS, authentication, etc.), and delivers actionable remediation guidance such as switching to parameterized queries or input validation patterns.

Does this tool work with dependency and configuration updates?โ–ผ

Yes. The Skill activates on dependency and configuration updates to surface vulnerabilities introduced by new packages or misconfigurations. It integrates with related tools like secret-scanner to deliver comprehensive security coverage across code, dependencies, and configs.

What's the difference between real-time scanning and pre-deployment checks?โ–ผ

Real-time scanning provides instant feedback as you write code to catch vulnerabilities early. Pre-deployment checks run before release to surface any missed risks. This Skill performs both, reducing the cost of fixing security issues discovered late in the development cycle.