Cyber Resilience

CVE-2021-4458

Medium

Published: 12 July 2025

Published
12 July 2025
Modified
29 July 2025
KEV Added
Patch
CVSS Score v3.1 5.9 CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N
EPSS Score 0.0024 47.8th percentile
Risk Priority 12 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2021-4458 is a medium-severity SQL Injection (CWE-89) vulnerability in Webnus Modern Events Calendar Lite. Its CVSS base score is 5.9 (Medium).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 47.8th 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-2021-4458 is a SQL injection vulnerability in the Modern Events Calendar Lite plugin for WordPress, affecting all versions up to and including 6.3.0. The flaw occurs via the 'id' parameter in the 'wp_ajax_mec_load_single_page' AJAX action, stemming from insufficient escaping of the user-supplied parameter and lack of sufficient preparation in the existing SQL query. It has a CVSS v3.1 base score of 5.9 (AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N) and is associated with CWE-89.

Unauthenticated attackers can exploit this vulnerability over the network to append additional SQL queries to existing ones, enabling extraction of sensitive information from the database. Exploitation requires high attack complexity and is limited to sites where addslashes is disabled, with no privileges, user interaction, integrity impact, or availability disruption needed.

Mitigation details are available in referenced advisories, including Wordfence threat intelligence at https://www.wordfence.com/threat-intel/vulnerabilities/id/703ba736-5834-40f2-9cf6-a6a70a73e4d6?source=cve and a patch applied in WordPress plugin trac changeset 2683727 at https://plugins.trac.wordpress.org/changeset/2683727/modern-events-calendar-lite/trunk/app/libraries/render.php in the render.php file.

EU & UK References

Vulnerability details

The Modern Events Calendar Lite plugin for WordPress is vulnerable to SQL Injection via the 'id' parameter of the 'wp_ajax_mec_load_single_page' AJAX action in all versions up to, and including, 6.3.0 due to insufficient escaping on the user supplied parameter and…

more

lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. This is only exploitable on sites with addslashes disabled.

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 public-facing WordPress plugin enables remote unauthenticated exploitation (T1190) and direct database data extraction (T1213.006).

Confidence: HIGH · MITRE ATT&CK Enterprise v18.1

CVEs Like This One

CVE-2019-25537Shared CWE-89
CVE-2019-25366Shared CWE-89
CVE-2019-25496Shared CWE-89
CVE-2026-1475Shared CWE-89
CVE-2026-26990Shared CWE-89
CVE-2026-44047Shared CWE-89
CVE-2025-12865Shared CWE-89
CVE-2024-11135Shared CWE-89
CVE-2019-25491Shared CWE-89
CVE-2024-13369Shared CWE-89

Affected Assets

webnus
modern events calendar lite
≤ 6.4.0

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly requires validation and sanitization of untrusted inputs such as the 'id' parameter before they reach SQL queries, eliminating the root cause of the injection.

prevent

Mandates timely application of the vendor patch (changeset 2683727) that adds proper escaping and prepared-statement handling to the affected AJAX action.

detect

Enables monitoring and alerting on anomalous database query patterns or error responses that would indicate attempted exploitation of the unauthenticated SQLi vector.

References