CVE-2026-3969
Published: 12 March 2026
Summary
CVE-2026-3969 is a medium-severity Injection (CWE-74) vulnerability. Its CVSS base score is 6.9 (Medium).
Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 13.1th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.
The strongest mitigations our analysis identified are NIST 800-53 SI-10 (Information Input Validation) and SC-7 (Boundary Protection).
Deeper analysis
CVE-2026-3969 is a SQL injection vulnerability affecting FeMiner WMS versions up to 1.0. The issue resides in an unknown function within the file /wms-master/src/basic/depart/depart_add_bg.php of the Basic Organizational Structure Module, where manipulation of the "Name" argument triggers the 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 7.3 (AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L), indicating high severity due to its network accessibility and lack of prerequisites.
The vulnerability can be exploited remotely by unauthenticated attackers with low complexity, requiring no user interaction or privileges. By crafting and submitting a malicious "Name" argument, attackers can inject SQL payloads, potentially leading to limited impacts on confidentiality (e.g., data exposure), integrity (e.g., data alteration), and availability (e.g., denial of service) of the affected system.
Advisories from VulDB (ctiid.350404, id.350404, submit.768977) document the issue, and a public exploit is available via a GitHub issue (yuan384/cve/issues/3). The vendor was notified early but provided no response, and no patches or mitigations are mentioned in the available details.
Notable context includes the public availability of the exploit, increasing the risk of active exploitation against unpatched FeMiner WMS instances. The vulnerability was published on 2026-03-12.
EU & UK References
- 🇪🇺 ENISA EUVD: EUVD-2026-11495
Vulnerability details
A vulnerability was detected in FeMiner wms up to 1.0. This impacts an unknown function of the file /wms-master/src/basic/depart/depart_add_bg.php of the component Basic Organizational Structure Module. Performing a manipulation of the argument Name results in sql injection. The attack may…
more
be initiated remotely. The exploit is now public and may be used. The vendor was contacted early about this disclosure but did not respond in any way.
- CWE(s)
Related Threats
MITRE ATT&CK Enterprise TechniquesAI
Why these techniques?
SQL injection in publicly accessible PHP endpoint of web app (WMS) directly enables remote unauthenticated exploitation of a public-facing application.
CVEs Like This One
Affected Assets
Mitigating Controls
Mitigating Controls (NIST 800-53 r5) AI
Directly requires validation of the Name argument in depart_add_bg.php to block malicious SQL payloads before they reach the database.
Boundary protection devices can inspect and filter inbound HTTP requests containing SQL injection strings targeting the exposed WMS endpoint.
Enables monitoring of application and database logs for anomalous SQL syntax or error patterns indicative of exploitation attempts against the vulnerable module.