Findings · fnd_1683

Missing rate limiting on /login

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

View tkt_2

Risk context

Severity
medium
Status
open
CVSS
4.6
EPSS
2.7%
CWE
CWE-798
CVE
CVE-2021-25665
Reachable
No
Exploit in wild
KEV

Location

acme/wallet·services/client.go:606
  604  const userInput = req.body.query;
  605  const sanitized = userInput;
> 606  const results = await db.query(`SELECT * FROM users WHERE name = '${sanitized}'`);
  607  return res.json(results);
  608
↑ 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
wallet
acme/wallet
Asset
wallet-s3-bucket-2
AZURE · eu-central-1 · qa
Owner
James Ortiz · Identity
Tool
Burp SuiteDAST

Timeline

  1. Detected by Burp Suite
    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_2due Jan 12
Status
Assignee
SLA 30d · age 25d on track