AUGUST 16, 2026
Live Feed
Back to database
Case File

CVE-2026-71447

MEDIUM · CVSS 6.9 EPSS 0.23% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-06 · Last synced 2026-08-16

CyberRota Analysis

AI-Generated

The vulnerability affects the AIL Project's Java-based application, specifically in the translation controls for chat messages and forum posts, where user-supplied identifiers are improperly handled in JavaScript event handlers. This flaw allows an attacker to inject arbitrary JavaScript by crafting malicious identifiers, potentially leading to stored cross-site scripting (XSS) attacks that execute in the context of the victim's browser. Organizations using this application should prioritize remediation, especially those with analysts frequently interacting with chat and forum features, to mitigate the risk of exploitation.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Detected Signals
exploit
GitHub PoC Links

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-71447
Severity
MEDIUM
CVSS
6.9
EPSS
0.23%
Java

Original NVD Description

AIL Project contains a stored cross-site scripting vulnerability in the translation controls displayed for chat messages and forum posts. The affected templates inserted message and post identifiers directly into inline JavaScript onclick handlers: onclick="translateMessageToPreferredLanguage('{{ message['id'] }}', '{{ mess_id_escape }}', this)" and: onclick="translatePostToPreferredLanguage('{{ post['id'] }}', '{{ post_id_escape }}', this)" These values were HTML-template escaped but were not safely encoded for use as JavaScript string literals inside an HTML attribute. A specially crafted identifier containing quotation marks, escape characters, or other JavaScript syntax could therefore terminate the expected string argument and inject arbitrary JavaScript into the event handler. Because the affected values are associated with indexed chat messages or forum posts, a malicious value may remain stored by AIL and be rendered whenever an analyst accesses the corresponding chat or forum explorer view. Successful exploitation requires the victim to click the affected Translate to preferred language button. The injected code would then execute in the victim’s browser under the security origin of the AIL instance.