Sakai Conversations CVE-2026-54049
HIGHSeverity by source
AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:N
Network-accessible REST API with PR:L (student enrollment sufficient); scope change to all viewing victims' browsers; C:H/I:H for session hijacking and impersonation; A:N as availability is unaffected.
Primary rating from GitHub Advisory.
CVSS VectorGitHub Advisory
Lifecycle Timeline
3DescriptionGitHub Advisory
Summary
The Sakai Conversations tool stores topic and post messages without HTML sanitization, and the frontend renders them using LitElement's unsafeHTML() directive, resulting in stored cross-site scripting (XSS). Any authenticated user with access to a site that has the Conversations tool enabled can inject arbitrary HTML and JavaScript that executes in the browsers of all other users who view that topic or post.
Description
The Conversations REST API endpoint POST /api/sites/{siteId}/topics accepts a message field in the JSON request body. The service layer (ConversationsServiceImpl) stores the message directly to the database (conv_topics.MESSAGE) without invoking FormattedText.processFormattedText() or any equivalent HTML sanitizer.
The same issue affects post replies via POST /api/sites/{siteId}/topics/{topicId}/posts and comments stored in conv_comments.
On the frontend, SakaiTopic.js, SakaiPost.js, and SakaiComment.js all render the message field using LitElement's unsafeHTML() directive:
SakaiPost.jslines 429, 432:${unsafeHTML(this.post.message)}SakaiTopic.jsline 679:${unsafeHTML(this.topic.message)}SakaiComment.jsline 148:${unsafeHTML(this.comment.message)}
Unlike other Sakai tools (Announcements, Assignments, Resources) which call FormattedText.processFormattedText() before persisting user content, the Conversations implementation has no equivalent protection at storage time or render time.
Proof of Concept
Setup: Admin/instructor session on a site with the Conversations tool enabled (siteId BELP_275K_7418).
Step 1 - Inject XSS payload in topic:
POST /api/sites/BELP_275K_7418/topics HTTP/1.1
Host: localhost:9107
Cookie: SAKAIID=<authenticated-session>
Content-Type: application/json
{"title":"XSS Test Topic","message":"<img src=x onerror=alert(1)>","type":"QUESTION","visibility":"SITE","draft":false}Response: HTTP 200, "message":"<img src=x onerror=alert(1)>" - raw HTML stored.
Step 2 - Verify stored in database:
SELECT TOPIC_ID, TITLE, MESSAGE FROM conv_topics
WHERE TOPIC_ID='e4c599c2-bd32-4364-9cbd-a5c9c102edfb';
-- Result: MESSAGE = <img src=x onerror=alert(1)>Step 3 - Inject XSS payload in post reply:
POST /api/sites/BELP_275K_7418/topics/e4c599c2-bd32-4364-9cbd-a5c9c102edfb/posts HTTP/1.1
Host: localhost:9107
Cookie: SAKAIID=<authenticated-session>
Content-Type: application/json
{"message":"<script>alert(document.cookie)<\/script>","siteId":"BELP_275K_7418"}Response: HTTP 200, "message":"<script>alert(document.cookie)</script>" - raw script stored.
Step 4 - Verify in database:
SELECT POST_ID, MESSAGE FROM conv_posts
WHERE POST_ID='e3cf7aed-c630-448a-89bb-27a8baacd269';
-- Result: MESSAGE = <script>alert(document.cookie)</script>When any site member loads the Conversations view, the LitElement web component fetches the stored messages via the REST API and renders them with unsafeHTML(), causing the injected scripts and event handlers to execute.
Impact
An attacker with any site membership (student role or higher) can:
- Perform actions on behalf of victims
- Exfiltrate gradebook data and course content
- In a university context with hundreds of students per course, a single malicious post can compromise all enrolled students simultaneously
Status / timeline:
- 2026-06-02: Fix committed to master (
2696b4b48cbef2e81512f52f84f7477adff78b27) - Release pending.
AnalysisAI
Stored XSS in Sakai Conversations (versions 23.0-23.3) allows any authenticated site member - including students - to inject arbitrary HTML and JavaScript into topics, posts, or comments that subsequently execute in the browsers of every user who views that content. The Conversations REST API accepts raw HTML in message fields without invoking Sakai's standard FormattedText.processFormattedText() sanitizer, and the LitElement frontend renders stored content via unsafeHTML() with no secondary defense. …
Unlock full vulnerability intelligence
- Risk assessment & exploitation conditions
- Attack chain visualization
- Remediation with exact patch versions
- Threat intelligence from 22 sources
- Personal watchlist & email alerts
Free forever · No credit card required
Attack ChainAIDerived
Hypothetical attack flow derived from CVE metadata
Vulnerability AssessmentAI
| Exploitation | The Sakai Conversations tool must be actively enabled on the target site - it is not enabled by default on all sites and must be added by an administrator or instructor. … Additional conditions and limiting factors are described in the full assessment. |
| Risk Assessment | The CVSS 3.1 vector (AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:N, score 8.7) accurately characterizes this threat: network-accessible, low complexity, requiring only student-level authentication, with Changed Scope reflecting cross-user browser compromise and high confidentiality and integrity impacts from session hijacking and gradebook exfiltration. … Full risk analysis with EPSS, KEV, and SSVC signal comparison available after sign-in. |
| Exploit Scenario | Full exploit scenario with step-by-step reproduction available after sign-in. |
| Remediation | Upgrade to Sakai 23.5 or later, which incorporates the fix committed on 2026-06-02 (commit 2696b4b48cbef2e81512f52f84f7477adff78b27). … Detailed patch versions, workarounds, and compensating controls in full report. |
Recommended ActionAI
Within 24 hours: Identify all Sakai deployments running versions 23.0-23.3 and notify security and academic leadership; assess whether Conversations functionality can be temporarily disabled pending patching. …
Sign in for detailed remediation steps and compensating controls.
Threat intelligence, references, and detailed analysis are available after sign-in.
Same weakness CWE-79 – Cross-site Scripting (XSS)
View allShare
External POC / Exploit Code
Leaving vuln.today
GHSA-w2x5-gv52-9ccv