Deep security vulnerability and secret scanning.
Scans code for security vulnerabilities, secrets, and dependency issues with configurable severity thresholds.
/plugin marketplace add Lobbi-Docs/claude/plugin install code-quality-orchestrator@claude-orchestrationDeep security vulnerability and secret scanning.
/security-scan [options]
| Option | Description | Default |
|---|---|---|
--deep | Full deep scan (slower) | false |
--secrets | Only scan for secrets | false |
--deps | Only scan dependencies | false |
--sast | Only run SAST analysis | false |
--severity=<level> | Minimum severity | medium |
--fail-on=<level> | Fail on severity | high |
--ignore=<pattern> | Ignore paths | node_modules |
# Standard security scan
/security-scan
# Deep scan with all checks
/security-scan --deep
# Only check for exposed secrets
/security-scan --secrets
# Fail only on critical issues
/security-scan --fail-on=critical
# CI mode
/security-scan --ci --severity=high --fail-on=high
π SECURITY SCAN REPORT
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Secrets Detection: β PASS (0 secrets found)
Dependency Vulnerabilities: β WARN (2 medium)
SAST Analysis: β PASS (0 critical issues)
Findings:
βββββββββββ¬βββββββββββββ¬ββββββββββββββββββββββββββββββ
β Severityβ Type β Description β
βββββββββββΌβββββββββββββΌββββββββββββββββββββββββββββββ€
β MEDIUM β CVE β lodash@4.17.19 - CVE-2021-23337 β
β MEDIUM β CVE β axios@0.21.0 - CVE-2021-3749 β
βββββββββββ΄βββββββββββββ΄ββββββββββββββββββββββββββββββ
Recommendations:
β’ Upgrade lodash to 4.17.21
β’ Upgrade axios to 0.21.4+
/security-scanSecurity-focused code scan. Checks for hardcoded secrets, vulnerable dependencies, and common security issues.
/security-scanSecurity-focused code scan. Checks for hardcoded secrets, vulnerable dependencies, and common security issues.