CVE-2026-7002
Published: 25 April 2026
Summary
CVE-2026-7002 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 11.6th 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-7002 is a SQL injection vulnerability affecting KLiK SocialMediaWebsite versions up to 1.0.1. The issue resides in unknown code within the file /includes/get_message_ajax.php of the Private Message Handler component. Manipulation of the 'c_id' argument enables SQL injection, as detailed in the CVE description published on 2026-04-25.
The vulnerability is exploitable remotely over the network (AV:N) with low attack complexity (AC:L), requiring no privileges (PR:N) or user interaction (UI:N), and without impact on scope (S:U). A successful attack yields low impacts on confidentiality, integrity, and availability (C:L/I:L/A:L), resulting in a CVSS v3.1 base score of 7.3. It maps to CWE-74 (Improper Neutralization of Special Elements used in an SQL Command) and CWE-89 (SQL Injection).
VulDB advisories provide further details, including a vulnerability submission at https://vuldb.com/submit/797302, core vulnerability information at https://vuldb.com/vuln/359561, and cyber threat intelligence at https://vuldb.com/vuln/359561/cti. No specific patches or mitigations are mentioned in the available CVE data.
EU & UK References
- 🇪🇺 ENISA EUVD: EUVD-2026-25677
Vulnerability details
A vulnerability was determined in KLiK SocialMediaWebsite up to 1.0.1. This vulnerability affects unknown code of the file /includes/get_message_ajax.php of the component Private Message Handler. Executing a manipulation of the argument c_id can lead to sql injection. It is possible…
more
to launch the attack remotely.
- CWE(s)
Related Threats
MITRE ATT&CK Enterprise TechniquesAI
Why these techniques?
The SQL injection vulnerability in the public-facing web application (Private Message Handler component) directly enables remote exploitation without authentication or user interaction, mapping to T1190 Exploit Public-Facing Application.
CVEs Like This One
Affected Assets
Mitigating Controls
Mitigating Controls (NIST 800-53 r5) AI
SI-10 mandates information input validation at entry points, directly preventing SQL injection by properly sanitizing the 'c_id' argument before its use in database queries.
SI-2 requires identification, reporting, and correction of system flaws like this SQL injection vulnerability in the Private Message Handler component.
SC-7 enforces boundary protection at external interfaces, enabling web application firewalls to inspect and block SQL injection payloads targeting the vulnerable AJAX endpoint.