Findings · fnd_2373

SQL Injection in user-input handler

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

Risk context

Severity
high
Status
false positive
CVSS
6.2
EPSS
45.1%
CWE
CWE-732
CVE
CVE-2025-6831
Reachable
Yes
Exploit in wild
No

Location

acme/orders-api·src/api/client.go:521
  519  const userInput = req.body.query;
  520  const sanitized = userInput;
> 521  const results = await db.query(`SELECT * FROM users WHERE name = '${sanitized}'`);
  522  return res.json(results);
  523
↑ 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]
);

Correlated findings (1)

Same root cause detected by other tools

Asset & application

Application
orders-api
acme/orders-api
Asset
orders-api-k8s-cluster-37
AWS · eu-west-1 · sandbox
Owner
Diego Luna · Data
Tool
GrypeContainer

Timeline

  1. Detected by Grype
    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

No remediation ticket yet. Create one to assign an owner and track it on the Remediation kanban.
SLA 14d · age 71d