security-scanner
Run security scans including SAST, dependency scanning, and secret detection
Best use case
security-scanner is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Run security scans including SAST, dependency scanning, and secret detection
Teams using security-scanner should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/security-scanner/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How security-scanner Compares
| Feature / Agent | security-scanner | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Run security scans including SAST, dependency scanning, and secret detection
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Security Scanner Skill
## Overview
Runs comprehensive security scans including SAST scanning with Semgrep/CodeQL, dependency vulnerability scanning with Snyk/OWASP, secret detection, and container image scanning.
## Capabilities
- SAST scanning (Semgrep, CodeQL)
- Dependency vulnerability scanning (Snyk, OWASP Dependency-Check)
- Secret detection (git-secrets, truffleHog, gitleaks)
- Container image scanning (Trivy, Grype)
- License compliance checking
- SBOM generation
- CVE database lookup
## Target Processes
- security-architecture-review
- iac-review
## Input Schema
```json
{
"type": "object",
"required": ["targets"],
"properties": {
"targets": {
"type": "array",
"items": { "type": "string" },
"description": "Paths to scan"
},
"scanTypes": {
"type": "array",
"items": {
"type": "string",
"enum": ["sast", "dependencies", "secrets", "containers", "licenses"]
},
"default": ["sast", "dependencies", "secrets"]
},
"tools": {
"type": "object",
"properties": {
"sast": {
"type": "string",
"enum": ["semgrep", "codeql"],
"default": "semgrep"
},
"dependencies": {
"type": "string",
"enum": ["snyk", "owasp", "npm-audit"],
"default": "snyk"
},
"secrets": {
"type": "string",
"enum": ["gitleaks", "trufflehog"],
"default": "gitleaks"
}
}
},
"options": {
"type": "object",
"properties": {
"severityThreshold": {
"type": "string",
"enum": ["critical", "high", "medium", "low"],
"default": "medium"
},
"failOnVulnerability": {
"type": "boolean",
"default": true
}
}
}
}
}
```
## Output Schema
```json
{
"type": "object",
"properties": {
"vulnerabilities": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "string" },
"severity": { "type": "string" },
"type": { "type": "string" },
"file": { "type": "string" },
"line": { "type": "number" },
"description": { "type": "string" },
"cve": { "type": "string" },
"fix": { "type": "string" }
}
}
},
"secrets": {
"type": "array"
},
"dependencyVulnerabilities": {
"type": "array"
},
"summary": {
"type": "object",
"properties": {
"critical": { "type": "number" },
"high": { "type": "number" },
"medium": { "type": "number" },
"low": { "type": "number" }
}
},
"passed": {
"type": "boolean"
}
}
}
```
## Usage Example
```javascript
{
kind: 'skill',
skill: {
name: 'security-scanner',
context: {
targets: ['src/**/*.ts', 'package.json'],
scanTypes: ['sast', 'dependencies', 'secrets'],
tools: {
sast: 'semgrep',
dependencies: 'snyk'
},
options: {
severityThreshold: 'high',
failOnVulnerability: true
}
}
}
}
```Related Skills
web-security
OWASP Top 10, security headers, CSP, XSS prevention, and vulnerability prevention.
security-sandbox
Isolated analysis environment management for malware and exploit testing. Create and manage isolated VMs, configure Cuckoo Sandbox, set up REMnux/FlareVM environments, manage Docker-based analysis containers, and capture filesystem and process changes.
Offensive Security Skill
Offensive security tools and techniques integration
hardware-security
Hardware and embedded security research capabilities. Interface with JTAG debuggers, analyze SPI/I2C communications, dump and analyze firmware, support fault injection, side-channel analysis, and hardware exploitation research.
cloud-security-testing
Multi-cloud security assessment and penetration testing capabilities. Execute Prowler/ScoutSuite assessments, analyze IAM policies, identify cloud misconfigurations, test permissions, and enumerate cloud resources across AWS/GCP/Azure.
Burp Suite/Web Security Skill
Web application security testing with Burp Suite integration
aiml-security
AI/ML model security testing and adversarial research capabilities. Generate adversarial examples, test model robustness, perform model extraction attacks, test for data poisoning, analyze model fairness, and support ART framework integration.
vendor-security-questionnaire
Automated vendor security assessment through questionnaire generation, response parsing, and risk scoring
secret-detection-scanner
Detect secrets, credentials, and sensitive data in code and configurations. Scan git history for secrets, detect API keys, tokens, passwords, check environment files, monitor CI/CD logs for exposure, generate remediation steps, and track secret rotation status.
owasp-security-scanner
Automated OWASP Top 10 vulnerability detection and assessment. Run OWASP ZAP automated scans, detect injection vulnerabilities, identify broken authentication patterns, check for sensitive data exposure, analyze security misconfigurations, and generate OWASP-compliant reports.
multi-cloud-security-posture
Unified cloud security posture management across AWS, Azure, and GCP with normalized metrics and CIS benchmark comparison
iac-security-scanner
Infrastructure as Code security scanning and policy enforcement for Terraform, CloudFormation, Kubernetes, and Pulumi