Cyber Resilience

CVE-2026-3287

MediumPublic PoC

Published: 27 February 2026

Published
27 February 2026
Modified
02 March 2026
KEV Added
Patch
CVSS Score v4 5.3 CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
EPSS Score 0.0039 30.7th percentile
Risk Priority 35 floored blend · peak EPSS

Summary

CVE-2026-3287 is a medium-severity Injection (CWE-74) vulnerability in Youlai Youlai-Mall. Its CVSS base score is 5.3 (Medium).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 30.7th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

The strongest mitigations our analysis identified are NIST 800-53 SI-10 (Information Input Validation) and AC-6 (Least Privilege).

Deeper analysis

CVE-2026-3287 is a SQL injection vulnerability in youlaitech youlai-mall version 2.0.0, affecting the listPagedSpuForApp function within the App-side Product Pagination Endpoint. The flaw resides in the file mall-pms/pms-boot/src/main/java/com/youlai/mall/pms/controller/app/SpuController.java, where manipulation of the sortField or sort arguments enables injection. It is classified under CWE-74 (Improper Neutralization of Special Elements used in an SQL Command) and CWE-89 (SQL Injection), with a CVSS v3.1 base score of 6.3 (AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L).

The vulnerability allows remote exploitation by low-privileged authenticated users over the network with low attack complexity and no user interaction required. Attackers can achieve limited impacts on confidentiality, integrity, and availability, potentially enabling unauthorized data access, modification, or disruption via injected SQL payloads.

Advisories from VulDB indicate no vendor response or patch availability despite early notification; the exploit code has been publicly released, increasing the risk of active attacks. References include VulDB entries (ctiid.348016, id.348016, submit.758977) and a Feishu document for further details.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability details

A security flaw has been discovered in youlaitech youlai-mall 2.0.0. This affects the function listPagedSpuForApp of the file mall-pms/pms-boot/src/main/java/com/youlai/mall/pms/controller/app/SpuController.java of the component App-side Product Pagination Endpoint. Performing a manipulation of the argument sortField/sort results in sql injection. Remote exploitation of…

more

the attack is possible. The exploit has been released to the public and may be used for attacks. The vendor was contacted early about this disclosure but did not respond in any way.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
T1213.006 Databases Collection
Adversaries may leverage databases to mine valuable information.
Why these techniques?

SQL injection in exposed web app endpoint (SpuController listPagedSpuForApp) directly enables T1190 (Exploit Public-Facing Application) for initial or post-auth access; injected payloads allow unauthorized retrieval/modification of database contents, mapping to T1213.006 (Data from Information Repositories: Databases).

Confidence: HIGH · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2025-14051Same product: Youlai Youlai-Mall
CVE-2025-0946Shared CWE-74, CWE-89
CVE-2026-4570Shared CWE-74, CWE-89
CVE-2025-0561Shared CWE-74, CWE-89
CVE-2025-7198Shared CWE-74, CWE-89
CVE-2025-3006Shared CWE-74, CWE-89
CVE-2025-2372Shared CWE-74, CWE-89
CVE-2025-1961Shared CWE-74, CWE-89
CVE-2025-2385Shared CWE-74, CWE-89
CVE-2025-1857Shared CWE-74, CWE-89

Affected Assets

youlai
youlai-mall
2.0.0

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly requires validation and neutralization of untrusted inputs (sortField/sort) before they reach SQL statements in listPagedSpuForApp.

prevent

Limits the database privileges granted to the application account so that even a successful injection yields only minimal impact on confidentiality/integrity/availability.

detect

Enables monitoring and anomaly detection on database queries or application logs to identify attempted or successful SQL injection payloads against the pagination endpoint.

References