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-30238

CVE-2026-30238: Intermesh Group-office XSS Vulnerability

CVE-2026-30238 is a reflected XSS flaw in Intermesh Group-office that allows attackers to execute arbitrary JavaScript in victim browsers. This post covers the technical details, affected versions, and mitigation strategies.

Published: March 13, 2026

CVE-2026-30238 Overview

Group-Office is an enterprise customer relationship management and groupware tool developed by Intermesh. A reflected Cross-Site Scripting (XSS) vulnerability exists in the external/index flow of Group-Office. The f parameter, which contains Base64-encoded JSON data, is decoded and injected into an inline JavaScript block without proper escaping. This allows attackers to craft malicious URLs containing </script><script>...</script> payloads that execute arbitrary JavaScript in the victim's browser when clicked.

Critical Impact

Attackers can exploit this vulnerability to steal session cookies, hijack user accounts, perform actions on behalf of authenticated users, or redirect victims to malicious sites by crafting specially encoded URLs.

Affected Products

  • Intermesh Group-Office versions prior to 6.8.155
  • Intermesh Group-Office versions prior to 25.0.88
  • Intermesh Group-Office versions prior to 26.0.10

Discovery Timeline

  • 2026-03-06 - CVE-2026-30238 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-30238

Vulnerability Analysis

This reflected XSS vulnerability occurs due to improper output encoding in the external/index endpoint of Group-Office. When the application processes the f parameter, it performs Base64 decoding on JSON data and directly injects the decoded content into an inline JavaScript block within the HTML response. The lack of strict escaping allows attackers to break out of the existing script context and inject their own malicious JavaScript code.

The vulnerability follows the classic reflected XSS pattern where user-supplied input is immediately reflected in the server response without adequate sanitization. Since the injection point is within an inline JavaScript block, attackers can use script tag closing sequences followed by new script tags to achieve code execution.

Root Cause

The root cause is insufficient input validation and output encoding when handling the Base64-encoded f parameter in the external/index flow. The application fails to properly escape special characters that have syntactic meaning in HTML/JavaScript contexts, specifically the </script> sequence that allows breaking out of the current script block.

Attack Vector

This is a network-based attack requiring user interaction. An attacker must craft a malicious URL containing a specially crafted f parameter with Base64-encoded payload that includes script injection sequences. The attacker then delivers this URL to victims through phishing emails, social media, or other channels. When a victim clicks the malicious link while authenticated to Group-Office, the injected JavaScript executes in their browser session with full access to their session context.

The attack leverages the f parameter's Base64 encoding to obfuscate the malicious payload, potentially bypassing basic URL inspection. Once decoded by the server, the payload breaks out of the legitimate script context using </script> and introduces a new script block with attacker-controlled code.

Detection Methods for CVE-2026-30238

Indicators of Compromise

  • Suspicious HTTP requests to /external/index endpoints containing unusually long or encoded f parameters
  • Base64-decoded parameter values containing HTML/JavaScript tags such as <script> or </script>
  • Web server logs showing repeated access to external/index with varying encoded payloads from the same source
  • User reports of unexpected browser behavior after clicking Group-Office related links

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests containing script injection patterns in Base64-encoded parameters
  • Monitor HTTP access logs for suspicious patterns in the f parameter targeting the external/index endpoint
  • Deploy browser-based XSS detection tools to identify attempts to execute injected scripts
  • Review Content Security Policy (CSP) violation reports for script execution from inline sources

Monitoring Recommendations

  • Enable detailed logging for all requests to the external/index endpoint
  • Configure alerting for anomalous request patterns or parameter sizes to the affected endpoint
  • Monitor for CSP violations that may indicate XSS exploitation attempts
  • Track authentication events following visits to external/index to identify potential session hijacking

How to Mitigate CVE-2026-30238

Immediate Actions Required

  • Upgrade Group-Office to patched versions 6.8.155, 25.0.88, or 26.0.10 immediately
  • Implement Content Security Policy headers to restrict inline script execution
  • Deploy web application firewall rules to filter malicious input patterns
  • Educate users about the risks of clicking untrusted links to the Group-Office application

Patch Information

Intermesh has released security patches addressing this vulnerability in Group-Office versions 6.8.155, 25.0.88, and 26.0.10. Organizations should upgrade to the appropriate patched version based on their current deployment branch. For detailed patch information and upgrade instructions, refer to the GitHub Security Advisory GHSA-7p2f-c33m-rv5v.

Workarounds

  • Implement a reverse proxy or WAF rule to sanitize or block requests to /external/index containing suspicious encoded content
  • Configure Content Security Policy headers with script-src 'self' to prevent inline script execution
  • Restrict access to the external/index endpoint to trusted IP ranges or authenticated users only where feasible
  • Consider temporarily disabling the affected endpoint if it is not critical to operations until patching is complete
bash
# Example Content Security Policy header configuration (Apache)
Header set Content-Security-Policy "default-src 'self'; script-src 'self'; object-src 'none';"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechGroup Office

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Vendor Resources
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal Vulnerability

  • CVE-2026-40259: SiYuan Auth Bypass Vulnerability

  • CVE-2026-40255: AdonisJS HTTP Server 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