security-reviewer

Fail

Audited by Runlayer on Mar 7, 2026

Risk Level: HIGH
Scan Summary
Max Score
92%
Files
7
Flagged
5
Chunks
7
Flagged Files (5)
security-reviewer/references/infrastructure-security.mdHIGH
92.3%

Malicious tool definition detected

```bash # Docker CIS benchmark docker run --net host --pid host --cap-add audit_control \ -v /var/lib:/var/lib -v /var/run/docker.sock:/var/run/docker.sock \ docker/docker-bench-security # Kubernetes CIS benchmark kube-bench run --targets master,node # Linux system hardening lynis audit system --quick ``` ### Compliance as Code (InSpec) ```ruby # controls/baseline.rb control 'ssh-hardening' do impact 1.0 title 'SSH Security Configuration' describe sshd_config do its('Protocol') { should eq '2' }

security-reviewer/references/penetration-testing.mdHIGH
90.6%

Malicious tool definition detected

Tool: security-reviewer/references/penetration-testing.md Description: # Penetration Testing ## Reconnaissance ### Passive Information Gathering ```bash # DNS enumeration dig example.com ANY nslookup -type=any example.com # Subdomain discovery subfinder -d example.com amass enum -d example.com # Certificate transparency curl -s "https://crt.sh/?q=%.example.com&output=json" ``` ### Active Scanning ```bash # Port scanning nmap -sV -p- target.com nmap -sC -sV -oA scan target.com # Web technology de

security-reviewer/references/secret-scanning.mdMEDIUM
87.9%

Malicious tool definition detected

| Stripe Key | `sk_live_[A-Za-z0-9]{24}` | sk_live_xxxx | | Private Key | `-----BEGIN.*PRIVATE KEY-----` | RSA/EC keys | | JWT | `eyJ[A-Za-z0-9_-]*\.eyJ` | Encoded tokens | ## Pre-commit Hook ```yaml # .pre-commit-config.yaml repos: - repo: https://github.com/gitleaks/gitleaks rev: v8.18.0 hooks: - id: gitleaks ``` ## CI/CD Integration ```yaml # GitHub Actions - name: Gitleaks uses: gitleaks/gitleaks-action@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitLab CI secret_detection: image: zr

security-reviewer/references/sast-tools.mdMEDIUM
77.0%

Malicious tool definition detected

trivy fs --security-checks vuln,secret,config .

security-reviewer/SKILL.mdLOW
51.7%

Tool passed security scan

Passed Files (2)Click to expand
security-reviewer/references/vulnerability-patterns.mdOK
35.1%

Tool passed security scan

security-reviewer/references/report-template.mdOK
27.9%

Tool passed security scan

Audit Metadata
Max File Score
92%
Classification
KNOWN_SERVER_KNOWN_TOOL_LIST
Files Scanned
7
Files Flagged
5
Chunks Analyzed
7
Analyzed
Mar 7, 2026, 07:55 PM
Security Audit — runlayer — security-reviewer