CVE-2026-1595
Published: 29 January 2026
Summary
CVE-2026-1595 is a medium-severity Injection (CWE-74) vulnerability in Angeljudesuarez Society Management System. 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 25.0th 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-3 (Access Enforcement).
Deeper analysis
CVE-2026-1595 is a SQL injection vulnerability (CWE-74, CWE-89) in itsourcecode Society Management System 1.0, affecting an unknown part of the file /admin/edit_student_query.php. The flaw is triggered by manipulation of the student_id argument, enabling remote exploitation.
The vulnerability has 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), meaning unauthenticated remote attackers require low complexity and no user interaction to exploit it over the network. Successful attacks can result in limited impacts to confidentiality, integrity, and availability, such as unauthorized data access, modification, or disruption.
Advisories documented on VulDB (ctiid.343357, id.343357, submit.740692) and a GitHub issue (yyzq-wsx/for_cve/issues/1) confirm the remote SQL injection, with the exploit now public and available for use. The vendor site (itsourcecode.com) is referenced but provides no specific mitigation details in the available information.
OWASP Top 10 for Web (2025)
EU & UK References
- 🇪🇺 ENISA EUVD: EUVD-2026-4952
Vulnerability details
A vulnerability was detected in itsourcecode Society Management System 1.0. This affects an unknown part of the file /admin/edit_student_query.php. The manipulation of the argument student_id results in sql injection. The attack can be executed remotely. The exploit is now public…
more
and may be used.
- CWE(s)
Related Threats
MITRE ATT&CK Enterprise TechniquesAI
Why these techniques?
Direct remote SQL injection in a public-facing web application component (/admin/edit_student_query.php) enables unauthenticated exploitation over the network, mapping exactly to T1190.
CVEs Like This One
Affected Assets
Mitigating Controls
Mitigating Controls (NIST 800-53 r5) AI
Directly requires validation of the student_id input parameter before it is used in the edit_student_query.php database query, blocking the SQL injection payload.
Enforces access-control decisions so that unauthenticated remote requests to the /admin/edit_student_query.php endpoint are rejected before the vulnerable student_id parameter is processed.
Boundary-protection mechanisms such as input-filtering proxies or WAF rules can inspect and drop SQL-injection attempts targeting the student_id argument over the network.