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
    • 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-2023-28617

CVE-2023-28617: Gnu Org Mode RCE Vulnerability

CVE-2023-28617 is a remote code execution flaw in Gnu Org Mode for GNU Emacs that allows attackers to execute arbitrary commands through shell metacharacters. This post covers technical details, affected versions, and mitigation.

Published: February 11, 2026

CVE-2023-28617 Overview

CVE-2023-28617 is a command injection vulnerability in org-babel-execute:latex within ob-latex.el in Org Mode through version 9.6.1 for GNU Emacs. The vulnerability allows attackers to execute arbitrary commands via a file name or directory name that contains shell metacharacters. This occurs when Org Mode processes LaTeX code blocks and fails to properly sanitize file or directory names before passing them to shell commands.

Critical Impact

Attackers can achieve arbitrary command execution on systems running vulnerable versions of GNU Emacs Org Mode by crafting malicious file or directory names containing shell metacharacters.

Affected Products

  • GNU Org Mode through version 9.6.1 for GNU Emacs

Discovery Timeline

  • 2023-03-19 - CVE-2023-28617 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2023-28617

Vulnerability Analysis

This vulnerability is classified as CWE-78 (Improper Neutralization of Special Elements used in an OS Command), commonly known as OS Command Injection. The flaw exists in the org-babel-execute:latex function within the ob-latex.el file, which is responsible for executing LaTeX code blocks in Org Mode documents.

When Org Mode processes LaTeX source blocks, it constructs shell commands that include file paths and directory names. The vulnerable code fails to properly sanitize or escape these names before incorporating them into shell command strings. An attacker who can control the file name or directory name—whether through a maliciously crafted Org document or by placing files with specially crafted names—can inject arbitrary shell commands that execute with the privileges of the user running Emacs.

The attack requires local access and some user interaction, as the victim must open and evaluate an Org document containing the malicious content, or navigate to a directory containing files with malicious names. Successful exploitation grants the attacker full control over the affected system's confidentiality, integrity, and availability within the context of the user's permissions.

Root Cause

The root cause of CVE-2023-28617 is insufficient input validation and improper handling of shell metacharacters in file and directory names within the org-babel-execute:latex function. The code constructs shell commands by directly concatenating user-controlled file path strings without proper escaping or sanitization. Shell metacharacters such as semicolons (;), backticks (`), dollar signs ($), pipes (|), and ampersands (&) in file names are interpreted by the shell as command separators or special operators, allowing command injection.

Attack Vector

The attack vector for this vulnerability is local, requiring the attacker to either:

  1. Craft a malicious Org Mode document containing a LaTeX source block that references a file or directory with shell metacharacters in its name
  2. Create a file or directory with a malicious name in a location where an Org Mode user might process LaTeX blocks

When the victim evaluates the LaTeX code block (for example, by exporting the document or explicitly executing the code block), the injected shell commands execute. The vulnerability mechanism exploits the way Elisp code passes arguments to external shell processes without proper quoting.

For detailed technical information, see the Org Mode Mailing List Discussion and the official GNU Emacs Org Mode security commits.

Detection Methods for CVE-2023-28617

Indicators of Compromise

  • Org Mode documents containing LaTeX code blocks with unusual file or directory references containing special characters like ;, `, $, |, &, or $()
  • Unexpected shell processes spawned as children of Emacs processes
  • Files or directories with names containing shell metacharacters in locations commonly accessed by Emacs users
  • Unusual system activity or network connections originating from Emacs processes

Detection Strategies

  • Monitor for Emacs processes spawning unexpected child shell processes or executing unusual commands
  • Implement file integrity monitoring to detect creation of files with suspicious names containing shell metacharacters
  • Review Org Mode documents before opening them from untrusted sources, particularly examining LaTeX code blocks
  • Deploy endpoint detection and response (EDR) solutions to identify anomalous command execution patterns from text editors

Monitoring Recommendations

  • Configure SentinelOne Singularity to monitor for command injection patterns originating from Emacs processes
  • Enable logging of shell command execution on systems where GNU Emacs is commonly used
  • Implement alerts for the creation of files with shell metacharacters in their names
  • Monitor for lateral movement or privilege escalation attempts following Emacs process execution

How to Mitigate CVE-2023-28617

Immediate Actions Required

  • Update GNU Emacs Org Mode to a version newer than 9.6.1 that includes the security patches
  • Avoid opening Org Mode documents from untrusted sources, especially those containing LaTeX code blocks
  • Review and audit any Org files before executing code blocks within them
  • Consider disabling automatic code block evaluation in Org Mode configuration

Patch Information

GNU has released patches addressing this vulnerability through two commits to the Org Mode repository:

  • Commit 8f8ec2ccf3f5ef8f38d68ec84a7e4739c45db485
  • Commit a8006ea580ed74f27f974d60b598143b04ad1741

Additionally, Debian has released security updates for affected packages as documented in their LTS Security Announcements. Users should update their Org Mode installation through their package manager or by updating to a patched version of GNU Emacs.

Workarounds

  • Disable LaTeX code block evaluation by customizing org-babel-load-languages to exclude latex
  • Set org-confirm-babel-evaluate to t to require confirmation before executing any code block
  • Avoid working with Org files in directories containing files with unusual names
  • Run Emacs in a sandboxed environment or with reduced privileges when handling untrusted documents
bash
# Emacs configuration to disable automatic LaTeX evaluation
# Add to your .emacs or init.el file:
# (setq org-confirm-babel-evaluate t)
# 
# Or completely disable LaTeX babel support:
# (org-babel-do-load-languages
#  'org-babel-load-languages
#  '((latex . nil)))

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechGnu Org Mode

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-78
  • Technical References
  • Org Mode Mailing List Discussion

  • Debian LTS Security Announcement

  • Debian LTS Security Announcement

  • Debian LTS Security Announcement
  • Vendor Resources
  • GNU Emacs Org Mode Commit

  • GNU Emacs Org Mode Commit
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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