CVE-2026-7060
Published: 26 April 2026
Summary
CVE-2026-7060 is a medium-severity Injection (CWE-74) vulnerability. Its CVSS base score is 5.5 (Medium).
Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 15.2th 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 SI-2 (Flaw Remediation).
Deeper analysis
CVE-2026-7060 is a SQL injection vulnerability in the liyupi yu-picture project, specifically affecting commits up to a053632c41340152bf75b66b3c543d129123d8ec. The flaw resides in the PageRequest function within the file yu-picture-backend/src/main/java/com/yupi/yupicturebackend/service/impl/PictureServiceImpl.java, part of the MyBatis-Plus component. By manipulating the sortField argument, attackers can inject malicious SQL payloads. The vulnerability carries 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) and is associated with CWEs 74 (Improper Neutralization of Special Elements used in an SQL Command) and 89 (SQL Injection).
The vulnerability is exploitable remotely by unauthenticated attackers with no privileges required and low attack complexity. Successful exploitation allows limited impacts on confidentiality, integrity, and availability, potentially enabling data exfiltration, modification, or denial of service depending on the database backend. An exploit has been publicly disclosed and may be utilized by threat actors targeting deployments of this software.
Advisories recommend applying a patch to mitigate the issue, though the project lacks versioning, making it unclear which releases are affected or fixed. The project was notified early via a pull request (github.com/liyupi/yu-picture/pull/3), but has not yet responded, as noted in the related issue (github.com/liyupi/yu-picture/issues/4). Additional details are available from VulDB entries (vuldb.com/vuln/359633).
EU & UK References
- 🇪🇺 ENISA EUVD: EUVD-2026-25730
Vulnerability details
A vulnerability was determined in liyupi yu-picture up to a053632c41340152bf75b66b3c543d129123d8ec. This impacts the function PageRequest of the file yu-picture-backend/src/main/java/com/yupi/yupicturebackend/service/impl/PictureServiceImpl.java of the component MyBatis-Plus. Executing a manipulation of the argument sortField can lead to sql injection. The attack can be launched…
more
remotely. The exploit has been publicly disclosed and may be utilized. This product does not use versioning. This is why information about affected and unaffected releases are unavailable. Applying a patch is advised to resolve this issue. The project was informed of the problem early through a pull request but has not reacted yet.
- CWE(s)
Related Threats
MITRE ATT&CK Enterprise TechniquesAI
Why these techniques?
SQL injection vulnerability in public-facing web application directly enables remote exploitation via T1190; facilitates unauthorized database queries and data access via T1213.006.
CVEs Like This One
Affected Assets
Mitigating Controls
Mitigating Controls (NIST 800-53 r5) AI
Directly requires validating and sanitizing user-supplied inputs like the sortField argument to block SQL injection in the PageRequest function.
Mandates timely identification, reporting, and remediation of flaws such as this SQL injection vulnerability through patching or code fixes.
Enables automated scanning to identify SQL injection vulnerabilities like CVE-2026-7060 in the MyBatis-Plus component before remote exploitation.