CVE-2021-47872
Published: 21 January 2026
Summary
CVE-2021-47872 is a high-severity SQL Injection (CWE-89) vulnerability. Its CVSS base score is 7.0 (High).
Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 14.2th 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 SI-2 (Flaw Remediation).
Deeper analysis
CVE-2021-47872 is a blind SQL injection vulnerability (CWE-89) in SEO Panel versions prior to 4.9.0. The issue affects the archive.php page, where the 'order_col' parameter fails to properly sanitize user input, allowing attackers to inject malicious SQL code and manipulate database queries.
Authenticated attackers with low privileges (PR:L) can exploit this vulnerability over the network (AV:N) with low attack complexity (AC:L) and no user interaction (UI:N). Exploitation, such as via sqlmap, enables extraction of database information, resulting in high confidentiality impact (C:H), low integrity impact (I:L), and no availability impact (A:N), with an overall CVSS v3.1 score of 7.1.
Advisories recommend upgrading to SEO Panel version 4.9.0 to mitigate the vulnerability, as detailed in the project's GitHub release notes and issue tracker. Further technical details, including a public exploit, are available on Exploit-DB and Vulncheck.
EU & UK References
- 🇪🇺 ENISA EUVD: EUVD-2026-3613
Vulnerability details
SEO Panel versions prior to 4.9.0 contain a blind SQL injection vulnerability in the archive.php page that allows authenticated attackers to manipulate database queries through the 'order_col' parameter. Attackers can use sqlmap to exploit the vulnerability and extract database information…
more
by injecting malicious SQL code into the order column parameter.
- CWE(s)
Related Threats
MITRE ATT&CK Enterprise TechniquesAI
Why these techniques?
Blind SQL injection in a web application directly enables remote exploitation for database data extraction, mapping to T1190.
CVEs Like This One
Affected Assets
Mitigating Controls
Mitigating Controls (NIST 800-53 r5) AI
Directly requires validation of the 'order_col' input on archive.php to reject malicious SQL syntax before query execution.
Mandates timely application of the vendor patch (v4.9.0) that eliminates the unsanitized parameter flaw.
Limits the database privileges granted to authenticated low-privilege accounts, reducing the impact of any successful blind SQLi extraction.