CVE-2026-24494
Published: 23 February 2026
Description
SQL Injection vulnerability in the /api/integrations/getintegrations endpoint of Order Up Online Ordering System 1.0 allows an unauthenticated attacker to access sensitive backend database data via a crafted store_id parameter in a POST request.
Mitigating Controls (NIST 800-53 r5)AI
Directly prevents SQL injection by validating the crafted store_id parameter in POST requests to ensure only legitimate inputs are processed by the backend database query.
Enforces restrictions on the store_id parameter, such as whitelisting valid values or limiting length and characters, to block malicious SQL injection payloads.
Boundary protection with web application firewalls inspects and blocks POST requests to the /api/integrations/getintegrations endpoint containing SQL injection patterns.
Security SummaryAI
CVE-2026-24494 is a SQL injection vulnerability (CWE-89) in the Order Up Online Ordering System version 1.0. The issue affects the /api/integrations/getintegrations endpoint, where an unauthenticated attacker can submit a crafted store_id parameter in a POST request to access sensitive backend database data. Published on 2026-02-23, it carries a CVSS v3.1 base score of 9.8 (AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H), indicating critical severity due to its high impact on confidentiality, integrity, and availability.
An unauthenticated attacker with network access can exploit this vulnerability without user interaction or privileges. By sending a specially crafted POST request to the vulnerable endpoint, the attacker can manipulate SQL queries to extract sensitive data from the backend database, potentially leading to unauthorized data disclosure, modification, or denial of service.
Mitigation details are provided in the advisory at https://www.spartanssec.com/post/multiple-unauthenticated-sql-injection-vulnerabilities.
Details
- CWE(s)
MITRE ATT&CK Enterprise TechniquesAI
Why these techniques?
Direct unauthenticated network exploitation of a public-facing web API endpoint via SQL injection (CWE-89) to access/modify backend data.