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
    • 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-29870

CVE-2026-29870: Agentic-Context-Engine Path Traversal

CVE-2026-29870 is a directory traversal vulnerability in agentic-context-engine up to version 0.7.1 that enables arbitrary file writes. This article covers the technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-29870 Overview

A directory traversal vulnerability exists in the agentic-context-engine project versions up to 0.7.1 that allows arbitrary file writes via the checkpoint_dir parameter in OfflineACE.run. The save_to_file method in ace/skillbook.py fails to normalize or validate filesystem paths, allowing traversal sequences to escape the intended checkpoint directory. This vulnerability allows attackers to overwrite arbitrary files accessible to the application process, potentially leading to application corruption, privilege escalation, or code execution depending on the deployment context.

Critical Impact

Attackers can exploit this directory traversal flaw to write arbitrary files outside the intended checkpoint directory, potentially overwriting critical application files, configuration files, or even executable code, leading to full system compromise.

Affected Products

  • agentic-context-engine versions up to and including 0.7.1

Discovery Timeline

  • 2026-03-31 - CVE CVE-2026-29870 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-29870

Vulnerability Analysis

This directory traversal vulnerability (CWE-22) affects the agentic-context-engine project, specifically within the checkpoint functionality. The root issue lies in how the application handles user-supplied file paths without proper validation or sanitization. When an attacker provides malicious input containing path traversal sequences (such as ../) to the checkpoint_dir parameter, the application fails to normalize these paths before performing file write operations.

The vulnerability is exploitable over the network and requires low privileges to exploit. While the attack complexity is low, the impact is significant: attackers can achieve high integrity impact by overwriting arbitrary files, with additional risks to confidentiality and availability of the affected system.

Root Cause

The save_to_file method in ace/skillbook.py lacks proper path validation and normalization. The function accepts user-controlled input for file paths without checking for directory traversal sequences or ensuring the resulting path remains within the intended checkpoint directory. This allows an attacker to craft input containing ../ sequences that escape the intended directory boundary and write files to arbitrary locations on the filesystem.

Attack Vector

The attack is conducted over the network (AV:N) with low attack complexity (AC:L). An authenticated attacker with low privileges can exploit this vulnerability by manipulating the checkpoint_dir parameter passed to OfflineACE.run. By injecting path traversal sequences such as ../../etc/ or similar patterns, the attacker can direct file write operations to sensitive system locations.

Depending on the deployment context and the privileges under which the application runs, successful exploitation could result in:

  • Application Corruption: Overwriting application binaries or configuration files
  • Privilege Escalation: Writing to privileged system locations when running with elevated permissions
  • Code Execution: Overwriting executable files, scripts, or configuration files that are subsequently executed

For detailed technical information about this vulnerability, refer to the GitHub Security Research.

Detection Methods for CVE-2026-29870

Indicators of Compromise

  • File system audit logs showing write operations to unexpected directories outside the checkpoint path
  • Application logs containing path traversal sequences (../, ..\\) in checkpoint-related parameters
  • Unexpected modification of system files or configuration files in sensitive directories
  • New or modified files appearing in directories outside the normal application scope

Detection Strategies

  • Monitor application input for path traversal patterns such as ../, ..\\, %2e%2e/, and URL-encoded variants targeting the checkpoint_dir parameter
  • Implement file integrity monitoring (FIM) on critical system directories to detect unauthorized modifications
  • Review application logs for anomalous file write operations outside expected checkpoint directories
  • Deploy web application firewalls (WAF) with rules to detect and block path traversal attack patterns

Monitoring Recommendations

  • Enable detailed audit logging for file system operations in directories accessible by the agentic-context-engine application
  • Configure alerts for file write operations that target system directories such as /etc/, /usr/, or application binary directories
  • Monitor for process executions or service restarts following unexpected file modifications
  • Implement real-time log analysis to correlate checkpoint operations with suspicious file system activity

How to Mitigate CVE-2026-29870

Immediate Actions Required

  • Restrict the application's filesystem permissions to limit write access to only the intended checkpoint directories
  • Implement network-level access controls to limit who can interact with the affected application functionality
  • Review and audit all existing checkpoint files to ensure no unauthorized modifications have occurred
  • Consider disabling the checkpoint functionality temporarily until a patch is applied

Patch Information

No official patch information is currently available from the vendor. Organizations should monitor the GitHub Security Research for updates and patch availability. Consider upgrading to a version newer than 0.7.1 when available.

Workarounds

  • Implement input validation at the application layer to reject any paths containing traversal sequences before they reach the vulnerable save_to_file method
  • Configure a sandboxed environment or container with restricted filesystem access for running the agentic-context-engine application
  • Use operating system-level controls (such as chroot jails or SELinux/AppArmor policies) to confine file write operations to specific directories
  • Deploy a reverse proxy or API gateway that sanitizes and validates the checkpoint_dir parameter before forwarding requests
bash
# Example: Restrict filesystem access using AppArmor profile
# Create profile at /etc/apparmor.d/agentic-context-engine
# Deny write access to sensitive directories while allowing checkpoint_dir
/path/to/checkpoint_dir/** rw,
deny /etc/** w,
deny /usr/** w,
deny /bin/** w,
deny /sbin/** w,

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechAgentic Context Engine

  • SeverityHIGH

  • CVSS Score7.6

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-22
  • Technical References
  • GitHub CVE-2026-29870 Research
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox RCE 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