CVE-2026-96803
Received Received - Intake

SQL Injection in java110 MicroCommunity

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

Publication date: 2026-09-24

Last updated on: 2026-09-24

Assigner: VulDB

Description

A vulnerability was identified in java110 MicroCommunity up to 2.0. Affected is the function QueryServiceSMOImpl.fallBack of the file BusinessApi.java of the component fallBack API Endpoint. Such manipulation of the argument fallBackSql leads to sql injection. The attack may be launched remotely. The exploit is publicly available and might be used. The project was informed of the problem early through an issue report but has not responded yet.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-09-24
Last Modified
2026-09-24
Generated
2026-09-24
AI Q&A
2026-09-24
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
java110 microcommunity to 2.0 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-89 The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component. Without sufficient removal or quoting of SQL syntax in user-controllable inputs, the generated SQL query can cause those inputs to be interpreted as SQL instead of ordinary user data.
CWE-74 The product constructs all or part of a command, data structure, or record using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify how it is parsed or interpreted when it is sent to a downstream component.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This is an unauthenticated SQL injection vulnerability in MicroCommunity v2.0 and earlier. It exists in the /businessApi/fallBack endpoint where the fallBackSql parameter allows attackers to inject raw SQL commands. The flaw occurs because MyBatis uses unsafe string concatenation instead of parameterized binding, enabling direct SQL execution without authentication.

Detection Guidance

Check for unauthenticated access to the /businessApi/fallBack endpoint by sending a GET or POST request without credentials. Look for SQL injection attempts in logs by searching for the fallBackSql parameter with suspicious SQL keywords like UPDATE, DELETE, DROP, or UNION.

Impact Analysis

Attackers can execute arbitrary SQL commands like UPDATE, DELETE, INSERT, DROP, CREATE, ALTER, or exfiltrate the entire database without credentials. They may also modify the java_script column in the c_service_sql table to achieve remote code execution by refreshing the Redis cache with default credentials.

Compliance Impact

This vulnerability likely violates compliance requirements for data protection (GDPR, HIPAA) due to unauthorized database access, potential data exfiltration, and lack of authentication controls. It enables complete database compromise, which would breach confidentiality and integrity requirements.

Mitigation Strategies

Immediately restrict access to the /businessApi/fallBack endpoint by updating the JWT filter to enforce authentication. Replace unsafe MyBatis string concatenation (${value}) with parameterized binding (#{value}) in the QueryServiceSMOImpl.fallBack function. Disable the unauthenticated /businessApi/query endpoint if not required.

Chat Assistant

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

EPSS Chart