Back to list
chaserbreitenbach

security-test-suite

by chaserbreitenbach

Custom skills and agents framework for Claude Code - testing, tooling, and workflow automation

0🍴 0📅 Jan 12, 2026

SKILL.md


name: security-test-suite description: | Comprehensive security testing framework aligned with OWASP Top 10 and CWE/SANS Top 25. Performs static analysis (SAST), dependency auditing (SCA), secret scanning, and infrastructure security checks. Generates actionable remediation reports with CVSS severity scoring. license: MIT allowed-tools:

  • Bash
  • Read
  • Write
  • Edit
  • Glob
  • Grep compatibility: claude-code: ">=1.0.0" metadata: version: "1.0.0" author: "QuantQuiver AI R&D" category: "testing" tags:
    • security
    • owasp
    • sast
    • vulnerability-scanning
    • secret-detection

Security Test Suite

Purpose

Comprehensive security testing framework aligned with OWASP Top 10 and CWE/SANS Top 25. Performs static analysis (SAST), dependency auditing (SCA), secret scanning, and infrastructure security checks. Generates actionable remediation reports.

Triggers

Use this skill when:

  • "security scan"
  • "check for vulnerabilities"
  • "OWASP compliance test"
  • "penetration test preparation"
  • "security audit"
  • "find security issues"
  • "dependency vulnerability check"

When to Use

  • Pre-deployment security review
  • Compliance requirements (SOC2, HIPAA, PCI-DSS)
  • New third-party integrations
  • Authentication/authorization changes
  • Handling sensitive data
  • Public-facing applications

When NOT to Use

  • Functional testing (use unit-test-generator)
  • Performance testing (use performance-benchmark)
  • Data quality validation (use data-validation)

Core Instructions

Security Testing Layers

LayerDescription
SASTCode pattern scanning, taint analysis, security linting
SCAKnown vulnerability scanning (CVE), license compliance
SecretsHardcoded credential detection, entropy analysis
InfrastructureContainer security, IaC scanning, cloud misconfigurations

OWASP Top 10 Coverage

OWASP CategoryTest TypesSeverity
A01: Broken Access ControlAuthZ bypass, IDOR, privilege escalationCritical
A02: Cryptographic FailuresWeak crypto, plaintext secrets, bad TLSCritical
A03: InjectionSQLi, XSS, Command, LDAP injectionCritical
A04: Insecure DesignBusiness logic, threat modelingHigh
A05: Security MisconfigurationDefault creds, verbose errorsHigh
A06: Vulnerable ComponentsKnown CVEs, outdated depsHigh
A07: Auth FailuresWeak passwords, session fixationHigh
A08: Data Integrity FailuresInsecure deserializationHigh
A09: Logging FailuresMissing logs, log injectionMedium
A10: SSRFServer-side request forgeryHigh

Severity Scoring (CVSS 3.1)

ScoreSeveritySLAAction
9.0-10.0Critical24hImmediate fix, block deployment
7.0-8.9High7dFix before next release
4.0-6.9Medium30dSchedule remediation
0.1-3.9Low90dBacklog

Detection Patterns

patterns:
  sql_injection:
    regex: '\.execute\s*\(\s*f["\']'
    severity: CRITICAL
    cwe: CWE-89
    message: "F-strings in SQL queries lead to injection"

  hardcoded_secret:
    regex: '(password|secret|api_key)\s*=\s*["\'][^"\']+["\']'
    severity: HIGH
    cwe: CWE-798
    message: "Hardcoded credentials detected"

  eval_usage:
    regex: 'eval\s*\([^)]*\)'
    severity: HIGH
    cwe: CWE-95
    message: "eval() can execute arbitrary code"

Templates

Security Report

# Security Scan Report

**Timestamp:** {timestamp}
**Repository:** {repository}

## Executive Summary

**Overall Risk Level:** {risk_level}

| Severity | Count | SLA |
| -------- | ----- | --- |
| Critical | {critical} | 24 hours |
| High | {high} | 7 days |
| Medium | {medium} | 30 days |
| Low | {low} | 90 days |

## Critical Findings

### {finding_id}: {title}

**Severity:** {severity} (CVSS: {cvss})
**CWE:** {cwe_id}
**Location:** `{file_path}:{line_number}`

**Code:**

{code_snippet}


**Remediation:**
{remediation}

Example

Input: Security scan of Flask application

Output:

## Executive Summary

**Overall Risk Level:** HIGH

| Severity | Count |
| -------- | ----- |
| Critical | 1 |
| High | 3 |
| Medium | 5 |

## Critical Findings

### SAST-0001: SQL injection via f-string

**Severity:** CRITICAL (CVSS: 9.5)
**Location:** `app/database.py:45`

**Code:**

```python
query = f"SELECT * FROM users WHERE id = {user_id}"
cursor.execute(query)

Remediation: Use parameterized queries:

cursor.execute("SELECT * FROM users WHERE id = ?", (user_id,))

---

## Validation Checklist

- [ ] All source files scanned
- [ ] Dependency manifests analyzed
- [ ] Git history checked for secrets (if enabled)
- [ ] All CRITICAL issues have specific remediation
- [ ] OWASP coverage mapping complete
- [ ] False positives reviewed and documented

---

## Related Skills

- `api-contract-validator` - For API security testing
- `unit-test-generator` - For testing security fixes
- `test-health-monitor` - For security test coverage

Score

Total Score

45/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon