Cyber Resilience

CVE-2026-3057

MediumPublic PoC

Published: 24 February 2026

Published
24 February 2026
Modified
03 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.0053 40.7th percentile
Risk Priority 35 floored blend · peak EPSS

Summary

CVE-2026-3057 is a medium-severity Injection (CWE-74) vulnerability in A54552239 Pearprojectapi. 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 40.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-3057 is a SQL injection vulnerability affecting pearProjectApi versions up to 2.8.10. The flaw resides in the dateTotalForProject function within the file application/common/Model/Task.php, part of the Backend Interface component. By manipulating the projectCode argument, an attacker can inject malicious SQL payloads, as classified under CWE-74 (Improper Neutralization of Special Elements used in an SQL Command) and CWE-89 (SQL Injection). The vulnerability carries 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) and was published on 2026-02-24.

The attack is remotely exploitable over the network with low complexity and requires low privileges, such as an authenticated user account. Successful exploitation allows limited impacts on confidentiality, integrity, and availability, potentially enabling data exfiltration, modification of database records, or minor denial-of-service effects depending on the injected payload.

Advisories from VulDB and the associated GitHub disclosure indicate no vendor response or patch availability despite early notification. The exploit has been publicly released, increasing the risk of active attacks against unpatched instances.

In notable context, the public exploit availability heightens the urgency for users of pearProjectApi to review and harden their Backend Interface deployments, as no remediation from the vendor has been reported.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability details

A security flaw has been discovered in a54552239 pearProjectApi up to 2.8.10. Affected is the function dateTotalForProject of the file application/common/Model/Task.php of the component Backend Interface. The manipulation of the argument projectCode results in sql injection. The attack can be…

more

launched remotely. 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 network-accessible backend/API component directly enables T1190 (Exploit Public-Facing Application). Successful exploitation permits arbitrary database queries, directly facilitating T1213.006 (Data from Information Repositories: Databases) for exfiltration or modification of records.

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

CVEs Like This One

CVE-2023-27113Same product: A54552239 Pearprojectapi
CVE-2023-27112Same product: A54552239 Pearprojectapi
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

Affected Assets

a54552239
pearprojectapi
≤ 2.8.10

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly requires validation and sanitization of untrusted inputs such as the projectCode parameter before it is used in SQL statements, blocking the injection vector in Task.php.

prevent

Limits the database privileges granted to the low-privilege accounts that can reach the Backend Interface, reducing the impact of any successful SQL injection.

detect

Enables monitoring of database query patterns and anomalies that would indicate exploitation attempts against the dateTotalForProject function.

References