CVE-2025-69214
published 2026-02-06CVE-2025-69214: OpenSTAManager is an open source management software for technical assistance and invoicing. In 2.9.8 and earlier, an SQL Injection vulnerability exists in the…
PriorityP352high8.8CVSS 3.1
AVNACLPRLUINSUCHIHAH
EPSS
0.42%
33.9th percentile
OpenSTAManager is an open source management software for technical assistance and invoicing. In 2.9.8 and earlier, an SQL Injection vulnerability exists in the ajax_select.php endpoint when handling the componenti operation. An authenticated attacker can inject malicious SQL code through the options[matricola] parameter.
Affected
3 ranges
| Vendor | Product | Version range | Fixed in |
|---|---|---|---|
| devcode-it | openstamanager | <= 2.9.8 | — |
| devcode-it | openstamanager | 0 – 2.9.8 | — |
| devcode | openstamanager | <= 2.9.8 | — |
CVSS provenance
nvdv3.18.8HIGHCVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
nvdv4.08.7HIGHCVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/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
Stop checking back — get the weekly exploitation signal.
Every Monday: what got weaponized or added to CISA KEV in the last seven days — each CVE cross-linked to its PoC, Nuclei template, and detection rule. Free, one email a week, unsubscribe in one click.
GHSA
OpenSTAManager has a SQL Injection in ajax_select.php (componenti endpoint)
ghsa·2026-02-06
CVE-2025-69214 [HIGH] CWE-89 OpenSTAManager has a SQL Injection in ajax_select.php (componenti endpoint)
OpenSTAManager has a SQL Injection in ajax_select.php (componenti endpoint)
## Summary
A SQL Injection vulnerability exists in the `ajax_select.php` endpoint when handling the `componenti` operation. An authenticated attacker can inject malicious SQL code through the `options[matricola]` parameter.
## Proof of Concept
### Vulnerable Code
**File:** `modules/impianti/ajax/select.php:122-124`
```php
case 'componenti':
$impianti = $superselect['matricola'];
if (!empty($impianti)) {
$where[] = '`my_componenti`.`id_impianto` IN ('.$impianti.')';
}
```
### Data Flow
1. **Source:** `$_GET['options']['matricola']` → `$superselect['matricola']`
2. **Vulnerable:** User input concatenated directly into `IN()` clause without sanitization
3. **Sink:** Query executed via AJAX framework
### Exploit
OSV
OpenSTAManager has a SQL Injection in ajax_select.php (componenti endpoint)
osv·2026-02-06
CVE-2025-69214 [HIGH] OpenSTAManager has a SQL Injection in ajax_select.php (componenti endpoint)
OpenSTAManager has a SQL Injection in ajax_select.php (componenti endpoint)
## Summary
A SQL Injection vulnerability exists in the `ajax_select.php` endpoint when handling the `componenti` operation. An authenticated attacker can inject malicious SQL code through the `options[matricola]` parameter.
## Proof of Concept
### Vulnerable Code
**File:** `modules/impianti/ajax/select.php:122-124`
```php
case 'componenti':
$impianti = $superselect['matricola'];
if (!empty($impianti)) {
$where[] = '`my_componenti`.`id_impianto` IN ('.$impianti.')';
}
```
### Data Flow
1. **Source:** `$_GET['options']['matricola']` → `$superselect['matricola']`
2. **Vulnerable:** User input concatenated directly into `IN()` clause without sanitization
3. **Sink:** Query executed via AJAX framework
### Exploit
No detection rules found.
No public exploits indexed.
2026-02-06
Published