The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-42192

CVE-2026-42192: Plunk Email Platform Stored XSS Vulnerability

CVE-2026-42192 is a stored cross-site scripting vulnerability in Plunk email platform that allows attackers to inject malicious scripts via campaign email bodies, leading to session hijacking. This article covers technical details, affected versions, impact, and mitigation.

Published: May 18, 2026

CVE-2026-42192 Overview

CVE-2026-42192 is a stored cross-site scripting (XSS) vulnerability in Plunk, an open-source email platform built on top of AWS Simple Email Service (SES). The flaw resides in the campaign management feature, where authenticated project members can inject HTML and JavaScript into the email body. Plunk's admin dashboard renders this content using React's dangerouslySetInnerHTML without HTML sanitization. When an administrator or another member views the campaign, the injected script executes in their browser session. Versions prior to 0.9.0 are affected. The issue is tracked under [CWE-79] (Improper Neutralization of Input During Web Page Generation).

Critical Impact

A lower-privileged project member can execute arbitrary JavaScript in an administrator's browser, enabling session hijacking and unauthorized actions performed under the admin's identity.

Affected Products

  • Plunk (open-source email platform) versions prior to 0.9.0
  • Self-hosted Plunk deployments using the campaign management feature
  • Plunk admin dashboards rendering user-supplied email body content

Discovery Timeline

  • 2026-05-08 - CVE-2026-42192 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-42192

Vulnerability Analysis

The vulnerability stems from unsafe rendering of user-controlled content in Plunk's React-based administrative interface. Authenticated project members create campaigns by composing an email body that includes HTML markup. Plunk stores the raw body and later renders it on the admin dashboard preview using React's dangerouslySetInnerHTML property. Because the application performs no HTML sanitization before rendering, any <script> element, event handler attribute, or javascript: URI placed in the body becomes active JavaScript in the viewer's browser. The execution context is the Plunk admin origin, giving the injected script access to session cookies, authentication tokens, and any API endpoints the victim can reach.

Root Cause

The root cause is the use of dangerouslySetInnerHTML on attacker-influenced content without a sanitization pass through a library such as DOMPurify. React deliberately names this property dangerous to signal that the developer assumes responsibility for cleansing input. Plunk's campaign body field accepts arbitrary HTML to support rich email composition, but the same raw markup is reused for in-app preview, conflating the email rendering trust boundary with the dashboard trust boundary.

Attack Vector

An attacker requires a valid project member account, which represents a lower privilege tier than project administrator. The attacker creates or edits a campaign and inserts a payload such as an inline script tag or an onerror attribute on an image element pointing to attacker-controlled JavaScript. When an administrator or fellow member loads the campaign view in the dashboard, the script executes with the victim's privileges. Typical impacts include stealing the session cookie, issuing authenticated API calls to add members, exfiltrating subscriber lists, or pivoting to send unauthorized email through the connected AWS SES account. The attack requires user interaction (UI:R) because the victim must navigate to the campaign.

No public proof-of-concept code has been released. See the GitHub Security Advisory GHSA-mjqc-qrv3-24hq for additional technical details.

Detection Methods for CVE-2026-42192

Indicators of Compromise

  • Campaign records containing <script> tags, onerror=, onload=, or javascript: URIs in the email body field.
  • Outbound network requests from admin browsers to unfamiliar domains shortly after a campaign view event.
  • Unexpected API calls from administrator sessions to create members, modify projects, or retrieve subscriber data.
  • New project member or API key creations that lack corresponding human-initiated audit events.

Detection Strategies

  • Query the Plunk database for campaign bodies matching XSS signatures and review entries authored by non-administrator accounts.
  • Inspect web server and reverse proxy logs for admin dashboard requests followed by anomalous cross-origin requests in the same session.
  • Enable and review browser Content Security Policy (CSP) violation reports if a CSP is deployed in front of Plunk.

Monitoring Recommendations

  • Audit project member account activity, focusing on campaign creation and edit operations performed by lower-privileged users.
  • Monitor AWS SES sending activity for unexpected spikes, new sender identities, or messages to attacker-controlled recipients.
  • Alert on administrative actions occurring in close temporal proximity to a campaign preview load.

How to Mitigate CVE-2026-42192

Immediate Actions Required

  • Upgrade Plunk to version 0.9.0 or later, where the campaign body is sanitized before rendering.
  • Review all existing campaigns for HTML payloads containing script tags or inline event handlers and remove suspicious entries before any admin reviews them.
  • Rotate session secrets and force re-authentication for all Plunk users following the upgrade.
  • Audit project member rosters and revoke accounts that should not retain access.

Patch Information

The fix is included in Plunk v0.9.0. Refer to the GitHub Release v0.9.0 notes and the GitHub Security Advisory GHSA-mjqc-qrv3-24hq for upgrade instructions and the underlying code change that introduces sanitization on campaign body rendering.

Workarounds

  • Restrict campaign creation and edit permissions to fully trusted administrators until the upgrade is applied.
  • Deploy a strict Content Security Policy in front of the Plunk dashboard that disallows inline script execution and limits script sources to known origins.
  • Place Plunk behind a web application firewall configured to block common stored XSS payloads in campaign API requests.
  • Instruct administrators to avoid previewing campaigns authored by untrusted members until patching is complete.

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechPlunk

  • SeverityMEDIUM

  • CVSS Score5.4

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Release v0.9.0

  • GitHub Security Advisory GHSA-mjqc-qrv3-24hq
  • Related CVEs
  • CVE-2026-34975: Plunk Email Platform XSS Vulnerability

  • CVE-2026-42193: Plunk Email Platform Auth Bypass Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English