Detect Budibase Anonymous NoSQL Operator Injection via Published-App Query Templates in Sumo Logic CSE
CVE-2026-54350 is a critical (CVSS 10.0) NoSQL operator injection vulnerability in @budibase/server versions prior to 3.39.12. Unauthenticated attackers can inject MongoDB-style operators (e.g., $gt, $where, $regex) into published-app query templates, bypassing authentication and data access controls. Successful exploitation can lead to full database exfiltration, authentication bypass, and remote code execution via $where clauses. A public PoC is available.
MITRE ATT&CK
Sumo Detection Query
_sourceCategory=web/access OR _sourceCategory=proxy OR _sourceCategory=waf
| parse regex "(?P<src_ip>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})" nodrop
| parse regex "\"(?P<http_method>GET|POST|PUT|PATCH|DELETE) (?P<request_path>[^\"]+)\"" nodrop
| parse regex "\b(?P<nosql_op>\$(?:gt|gte|lt|lte|ne|in|nin|exists|where|regex|elemMatch|or|and|not|nor))\b" multi nodrop
| where request_path matches "/api/public/v1/queries*" or request_path matches "/api/v1/queries*"
| where !isNull(nosql_op)
| timeslice 5m
| stats count as attempt_count, values(nosql_op) as operators_found, values(request_path) as paths by src_ip, _timeslice
| where attempt_count >= 1
| sort by attempt_count desc
| fields _timeslice, src_ip, attempt_count, operators_found, paths Sumo Logic query detecting NoSQL operator injection attempts against Budibase APIs. Parses source IPs, request paths, and operator tokens from web access logs with 5-minute aggregation windows.
Data Sources
Required Tables
False Positives & Tuning
- Budibase internal service-to-service calls that pass query filter objects containing operators
- Third-party integrations using Budibase REST API with complex filter syntax in request bodies
- Automated backup or export jobs that query Budibase with advanced filter parameters
Other platforms for CVE-2026-54350
Testing Methodology
Validate this detection against 4 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.
- Test 1Basic NoSQL Operator Injection via Budibase Published Query API
Expected signal: HTTP POST request to /api/public/v1/queries/{id} with JSON body containing '$gt' operator visible in web proxy logs or network capture
- Test 2JavaScript Execution via $where NoSQL Operator (RCE Path)
Expected signal: HTTP POST with '$where' string in request body; potentially elevated response time if JavaScript executes; MongoDB slow query log entry if profiling enabled
- Test 3Authentication Bypass via $ne Operator on User Collection Query
Expected signal: POST request to Budibase query endpoint with $ne operators in both username and password fields; HTTP 200 response with user record(s) returned if vulnerable
- Test 4Data Exfiltration via $regex Operator Enumeration
Expected signal: Series of POST requests to same Budibase query endpoint with varying $regex patterns; observable as repeated requests with incrementing operator values in proxy logs
Unlock Pro Content
Get the full detection package for CVE-2026-54350 including response playbook, investigation guide, and atomic red team tests.