CVE-2026-8335
Awaiting Analysis Awaiting Analysis - Queue

Aix-DB Missing Authentication SQL Query Execution

Vulnerability report for CVE-2026-8335, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-06-10

Last updated on: 2026-06-10

Assigner: CERT.PL

Description

A missing authentication check on the Aix‑DB "/llm/process_llm_out" endpoint allows unauthenticated clients to execute arbitrary "SELECT" SQL queries and retrieve database data, as the endpoint lacks the token validation enforced on all other application endpoints. All releases up to 1.2.4 are considered vulnerable. Status of next releases is unknown as the vulnerability has not been addressed by any patch.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-10
Last Modified
2026-06-10
Generated
2026-06-30
AI Q&A
2026-06-10
EPSS Evaluated
2026-06-29
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
apconw aix-db to 1.2.4 (inc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-306 The product does not perform any authentication for functionality that requires a provable user identity or consumes a significant amount of resources.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability exists in the Aix-DB software, specifically in the "/llm/process_llm_out" endpoint. The issue is that this endpoint lacks an authentication check, unlike other endpoints that require token validation. As a result, unauthenticated clients can execute arbitrary "SELECT" SQL queries and retrieve data from the database.

Impact Analysis

Because unauthenticated users can execute arbitrary SELECT SQL queries, this vulnerability can lead to unauthorized access to sensitive database information. Attackers could retrieve confidential data without any authentication, potentially exposing private or critical information stored in the database.

Detection Guidance

This vulnerability can be detected by checking for unauthorized access attempts to the "/llm/process_llm_out" endpoint of the Aix-DB application. Since the endpoint allows unauthenticated execution of arbitrary SELECT SQL queries, monitoring HTTP requests targeting this endpoint is essential.

You can use network monitoring tools or web server logs to identify requests to "/llm/process_llm_out" that do not include authentication tokens.

Example commands to detect such activity might include:

  • Using grep on web server logs to find requests to the vulnerable endpoint: grep "/llm/process_llm_out" /var/log/nginx/access.log
  • Using tcpdump to capture HTTP traffic and filter requests to the endpoint: tcpdump -A -s 0 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' | grep "/llm/process_llm_out"
  • Using curl to manually test the endpoint for unauthenticated access: curl -v http://<target-host>/llm/process_llm_out
Mitigation Strategies

Immediate mitigation steps include restricting access to the "/llm/process_llm_out" endpoint to trusted users or internal networks only, since no patch is currently available.

Implement network-level controls such as firewall rules or API gateway policies to block unauthenticated requests to this endpoint.

Additionally, monitor logs for suspicious activity targeting this endpoint and consider disabling or limiting the use of the vulnerable endpoint until a patch or update is released.

If possible, apply custom authentication checks or proxy the requests through a service that enforces token validation.

Compliance Impact

This vulnerability allows unauthenticated clients to execute arbitrary SELECT SQL queries and retrieve database data due to a missing authentication check on a specific endpoint. Such unauthorized data access can lead to exposure of sensitive or personal data.

As a result, this vulnerability can negatively impact compliance with common data protection standards and regulations such as GDPR and HIPAA, which require strict controls on access to personal and sensitive data to prevent unauthorized disclosure.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-8335. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart