Findings · fnd_60

Excessive Kubernetes RBAC privileges

Tool detected a potential vulnerability via static/dynamic analysis. Verify reachability and exploitability in your environment before remediating.

View tkt_27

Risk context

Severity
medium
Status
open
CVSS
5.9
EPSS
75.9%
CWE
CWE-732
CVE
CVE-2025-11321
Reachable
Yes
Exploit in wild
No

Location

acme/vault·src/api/client.go:68
  66  const userInput = req.body.query;
  67  const sanitized = userInput;
> 68  const results = await db.query(`SELECT * FROM users WHERE name = '${sanitized}'`);
  69  return res.json(results);
  70
↑ Unsafe string interpolation into SQL query

Remediation

Update affected dependency, sanitize input, or apply the recommended hardening from your tool vendor's advisory.

Suggested fix
const results = await db.query(
  'SELECT * FROM users WHERE name = $1',
  [sanitized]
);

Asset & application

Application
vault
acme/vault
Asset
vault-vm-92
AWS · eu-west-1 · production
Owner
Elena Rossi · Identity
Tool
CheckovIaC

Timeline

  1. Detected by Checkov
    over 56 years ago
  2. Re-confirmed in latest scan
    over 56 years ago
  3. Auto-correlated with 2 peer findings
    2 days ago
  4. Priority raised — KEV match
    1 day ago

Remediation ticket

Kanban
tkt_27due Jan 19
Status
Assignee
SLA 30d · age 3d on track