Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2345

CVE-2026-2345: Proctorio Chrome Extension XSS Vulnerability

CVE-2026-2345 is an XSS flaw in Proctorio Chrome Extension caused by improper message origin validation. Attackers can exploit this to inject malicious scripts. This article covers technical details, impact, and mitigation.

Published: February 13, 2026

CVE-2026-2345 Overview

CVE-2026-2345 is an Origin Validation Error vulnerability in the Proctorio Chrome Extension, a browser extension used for online proctoring during examinations. The extension contains multiple window.addEventListener('message', ...) handlers that do not properly validate the origin of incoming messages. Specifically, an internal messaging bridge processes messages based solely on the presence of a fromWebsite property without verifying the event.origin attribute, allowing malicious websites to send crafted messages that the extension will process as legitimate.

Critical Impact

Attackers can potentially exploit this origin validation bypass to interact with the Proctorio extension's internal messaging system, potentially leading to unauthorized access to extension functionality or sensitive information exposure during proctored sessions.

Affected Products

  • Proctorio Chrome Extension

Discovery Timeline

  • 2026-02-11 - CVE CVE-2026-2345 published to NVD
  • 2026-02-11 - Last updated in NVD database

Technical Details for CVE-2026-2345

Vulnerability Analysis

This vulnerability is classified under CWE-346 (Origin Validation Error), which occurs when software fails to properly verify the origin of data or messages. In the context of browser extensions, the postMessage API enables cross-origin communication between different contexts (web pages, iframes, extensions). However, this communication channel requires careful validation to prevent malicious actors from exploiting it.

The Proctorio extension implements message handlers using window.addEventListener('message', ...) to receive communications from web pages. The vulnerability arises because these handlers check only for the presence of a fromWebsite property in incoming messages rather than validating the event.origin attribute. This design flaw means any webpage, including malicious ones, can craft messages with the expected property structure and have them processed by the extension as if they originated from a trusted source.

Root Cause

The root cause is improper implementation of the postMessage event listener in the extension's codebase. The message handlers fail to verify the event.origin attribute against a whitelist of trusted origins before processing incoming messages. Instead, the code relies solely on the presence of internal message properties (such as fromWebsite) to determine message authenticity, which is insufficient as these properties can be spoofed by any webpage.

Attack Vector

The attack requires local access and user interaction, making it more difficult to exploit in practice. An attacker would need to lure a victim to a malicious webpage while the Proctorio extension is active. The malicious page could then use JavaScript to send crafted postMessage calls to the extension with the expected property structure. Since the extension does not validate the origin of these messages, it would process them as legitimate, potentially allowing the attacker to trigger extension functionality or extract information.

The vulnerability mechanism involves sending specially crafted postMessage calls from an attacker-controlled webpage. When a user with the Proctorio extension visits such a page, the extension's message handlers receive and process these messages without verifying that they originated from a legitimate proctoring service. Technical details about the specific exploitation methodology can be found in the HackrT Hacktivity Post.

Detection Methods for CVE-2026-2345

Indicators of Compromise

  • Unusual postMessage activity originating from domains not associated with legitimate proctoring services
  • Extension console logs showing processed messages from unexpected origins
  • Anomalous behavior during proctored sessions that could indicate external manipulation

Detection Strategies

  • Monitor browser extension activity for unexpected message processing events
  • Implement network monitoring to detect connections to suspicious domains during proctoring sessions
  • Review browser developer console for evidence of cross-origin message manipulation attempts

Monitoring Recommendations

  • Enable detailed logging for browser extensions in enterprise environments
  • Use browser security policies to restrict extension communication where possible
  • Deploy endpoint detection solutions capable of monitoring browser extension behavior

How to Mitigate CVE-2026-2345

Immediate Actions Required

  • Update the Proctorio Chrome Extension to the latest version when a patch becomes available
  • Advise users to avoid visiting untrusted websites while the Proctorio extension is enabled
  • Consider temporarily disabling the extension when not actively in use for proctored examinations

Patch Information

At the time of publication, specific patch information was not available in the CVE data. Users should monitor the Proctorio extension's Chrome Web Store page and official communications for security updates that address this origin validation vulnerability. The HackrT Hacktivity Post may contain additional information regarding remediation.

Workarounds

  • Disable the Proctorio extension when not actively participating in a proctored examination
  • Use a dedicated browser profile exclusively for proctored sessions with minimal additional browsing
  • Implement browser isolation or sandboxing to limit the impact of potential exploitation
  • Avoid navigating to untrusted websites while the extension is active

The recommended mitigation involves ensuring the extension validates event.origin in all message handlers against a strict whitelist of trusted proctoring service domains before processing any incoming messages.

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechProctorio Chrome Extension

  • SeverityLOW

  • CVSS Score3.6

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-346
  • Technical References
  • HackrT Hacktivity Post
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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