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-2025-69770

CVE-2025-69770: MojoPortal CMS Zip Slip RCE Vulnerability

CVE-2025-69770 is a zip slip remote code execution vulnerability in MojoPortal CMS v2.9.0.1 affecting the /DesignTools/SkinList.aspx endpoint. This article covers technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2025-69770 Overview

A critical zip slip vulnerability exists in the /DesignTools/SkinList.aspx endpoint of MojoPortal CMS v2.9.0.1. This path traversal flaw allows attackers to execute arbitrary commands by uploading a specially crafted zip file containing malicious path sequences. When the application extracts the archive, it fails to properly validate file paths within the zip, enabling attackers to write files to arbitrary locations on the server filesystem.

Critical Impact

This vulnerability enables remote command execution through malicious zip file uploads, potentially allowing complete server compromise without authentication.

Affected Products

  • MojoPortal CMS v2.9.0.1
  • MojoPortal CMS versions prior to v2.9.1

Discovery Timeline

  • 2026-02-13 - CVE CVE-2025-69770 published to NVD
  • 2026-02-13 - Last updated in NVD database

Technical Details for CVE-2025-69770

Vulnerability Analysis

The zip slip vulnerability (CWE-22: Improper Limitation of a Pathname to a Restricted Directory) occurs in the skin upload functionality of MojoPortal CMS. The /DesignTools/SkinList.aspx endpoint accepts zip file uploads to install custom themes or skins, but fails to properly sanitize the file paths contained within the archive during extraction.

When a zip archive is uploaded, the application extracts its contents without validating whether the archived file paths contain directory traversal sequences such as ../. An attacker can craft a malicious zip file where entries reference paths outside the intended extraction directory, such as ../../../webroot/shell.aspx. Upon extraction, these files are written to arbitrary locations on the server, bypassing the intended upload directory restrictions.

This type of vulnerability is particularly dangerous in web applications because an attacker can write executable files (such as .aspx web shells) to the webroot, gaining the ability to execute arbitrary commands on the server with the privileges of the web application process.

Root Cause

The root cause is insufficient path validation during zip archive extraction. The application directly uses file paths from the zip archive entries without canonicalizing the paths or checking for directory traversal sequences. The extraction routine does not verify that the final resolved path remains within the designated extraction directory, allowing path components like .. to escape the intended directory boundary.

Attack Vector

The attack is network-based and can be executed by any user with access to the SkinList endpoint. An attacker crafts a zip archive containing files with malicious path entries (e.g., ../../wwwroot/malicious.aspx). When this archive is uploaded through the /DesignTools/SkinList.aspx endpoint, the extraction process writes the malicious file to an attacker-controlled location. The attacker can then access the uploaded web shell or executable to gain remote command execution on the server.

The vulnerability mechanism involves:

  1. Attacker creates a zip archive with entries containing path traversal sequences
  2. Attacker uploads the malicious zip file to the SkinList endpoint
  3. Server extracts archive contents without sanitizing file paths
  4. Malicious files are written outside the intended extraction directory
  5. Attacker accesses the uploaded payload to execute arbitrary commands

For technical details on the exploitation method, see the GitHub Zipslip Vulnerability Report.

Detection Methods for CVE-2025-69770

Indicators of Compromise

  • Unexpected .aspx, .ashx, or executable files appearing in the webroot or other sensitive directories
  • Web server logs showing requests to the /DesignTools/SkinList.aspx endpoint with zip file uploads followed by requests to newly created suspicious files
  • File system activity showing file creation events outside the designated skin upload directory
  • Presence of web shells or backdoor files in application directories

Detection Strategies

  • Monitor file upload events to the /DesignTools/SkinList.aspx endpoint and analyze uploaded zip file contents for path traversal sequences
  • Implement file integrity monitoring (FIM) on critical application directories to detect unauthorized file creation
  • Deploy web application firewall (WAF) rules to inspect zip file uploads for malicious path patterns
  • Configure endpoint detection to alert on suspicious file creation events by the IIS worker process

Monitoring Recommendations

  • Enable detailed logging for the MojoPortal application and web server to capture all file upload activity
  • Implement real-time monitoring for new file creation events in web-accessible directories
  • Configure alerts for outbound connections from the web server that may indicate post-exploitation activity
  • Review access logs for the /DesignTools/ path regularly to identify unauthorized access attempts

How to Mitigate CVE-2025-69770

Immediate Actions Required

  • Upgrade MojoPortal CMS to version 2.9.1 or later immediately
  • Restrict access to the /DesignTools/ directory to authenticated administrators only
  • Implement network-level access controls to limit who can reach administrative endpoints
  • Audit the server filesystem for any unauthorized files that may have been uploaded through exploitation

Patch Information

MojoPortal has addressed this vulnerability in version 2.9.1. Organizations running MojoPortal CMS should upgrade to the patched version as soon as possible. For detailed release information, see the MojoPortal 2.9.1 Release Notes. Additional security information is available at the GitHub MojoPortal Security page.

Workarounds

  • If immediate patching is not possible, disable or restrict access to the /DesignTools/SkinList.aspx endpoint through web server configuration
  • Implement strict authentication requirements for all administrative endpoints
  • Deploy a web application firewall with rules to block zip file uploads containing path traversal patterns
  • Consider temporarily taking the affected endpoint offline until the patch can be applied
bash
# IIS URL Rewrite rule to block access to vulnerable endpoint
# Add to web.config in MojoPortal root directory
# <system.webServer>
#   <rewrite>
#     <rules>
#       <rule name="Block SkinList" stopProcessing="true">
#         <match url="DesignTools/SkinList.aspx" />
#         <action type="CustomResponse" statusCode="403" />
#       </rule>
#     </rules>
#   </rewrite>
# </system.webServer>

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechMojoportal

  • SeverityCRITICAL

  • CVSS Score10.0

  • EPSS Probability0.12%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Technical References
  • GitHub MojoPortal Security

  • GitHub Zipslip Vulnerability Report

  • MojoPortal 2.9.1 Release Notes
  • 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