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

CVE-2025-32957: Basercms Basercms RCE Vulnerability

CVE-2025-32957 is a remote code execution flaw in Basercms that allows attackers to execute arbitrary code via malicious PHP files in uploaded zip archives. This article covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2025-32957 Overview

CVE-2025-32957 is a critical vulnerability in baserCMS, a popular website development framework. The vulnerability exists in the application's restore function, which allows users to upload a .zip file that is then automatically extracted. A PHP file inside the archive is included using require_once without validating or restricting the filename. This flaw enables an attacker to craft a malicious PHP file within the zip archive and achieve arbitrary code execution when it is included by the application.

Critical Impact

An authenticated attacker with high privileges can achieve arbitrary code execution on the target server by uploading a malicious ZIP file containing a crafted PHP payload, potentially leading to complete system compromise.

Affected Products

  • baserCMS versions prior to 5.2.3
  • All baserCMS installations using the restore functionality
  • Web servers running vulnerable baserCMS deployments

Discovery Timeline

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

Technical Details for CVE-2025-32957

Vulnerability Analysis

This vulnerability is classified as CWE-434 (Unrestricted Upload of File with Dangerous Type) and represents a severe arbitrary code execution risk. The flaw exists in the restore functionality where the application extracts uploaded ZIP archives and subsequently includes PHP files using require_once without proper validation.

The attack can be executed over the network and requires high privileges (administrative access) but no user interaction. Once exploited, the attacker gains the ability to execute arbitrary PHP code on the server with the same privileges as the web server process, potentially resulting in complete confidentiality, integrity, and availability compromise of the affected system.

Root Cause

The root cause of this vulnerability is the lack of proper input validation and filename restriction when processing files extracted from user-uploaded ZIP archives. The application blindly uses require_once to include PHP files from the extracted archive without verifying that the files are legitimate backup components or sanitizing the filenames. This allows an attacker to inject arbitrary PHP code that will be executed in the context of the web application.

Attack Vector

The attack vector is network-based and requires the attacker to have high-level privileges (typically administrative access) to the baserCMS application. The attacker crafts a malicious ZIP archive containing a PHP file with arbitrary code. When this archive is uploaded through the restore function, the application extracts the contents and includes the malicious PHP file using require_once, triggering code execution.

The vulnerability exploits the trust placed in uploaded archive contents. Since the restore function is designed to restore backups, it expects legitimate backup files. However, without proper validation, an attacker can abuse this functionality to inject and execute malicious code.

Detection Methods for CVE-2025-32957

Indicators of Compromise

  • Suspicious .zip file uploads to the baserCMS restore endpoint
  • Unusual PHP files appearing in directories accessible by the restore function
  • Unexpected server process activity or outbound connections following restore operations
  • Web server logs showing restore function access followed by unusual behavior

Detection Strategies

  • Monitor file upload activity to the baserCMS restore functionality for unexpected patterns
  • Implement file integrity monitoring on directories where ZIP archives are extracted
  • Review web server access logs for suspicious restore function invocations
  • Analyze PHP error logs for unexpected require_once failures or execution patterns

Monitoring Recommendations

  • Enable detailed logging for all file upload and restore operations in baserCMS
  • Configure web application firewall (WAF) rules to inspect uploaded ZIP file contents
  • Implement real-time alerting for administrative function usage, especially the restore feature
  • Deploy endpoint detection and response (EDR) solutions to detect post-exploitation activity

How to Mitigate CVE-2025-32957

Immediate Actions Required

  • Upgrade baserCMS to version 5.2.3 or later immediately
  • Restrict access to the restore functionality to only essential administrators
  • Audit recent restore function usage and uploaded ZIP files for potential compromise
  • Review server logs for any indicators of exploitation

Patch Information

The baserCMS development team has addressed this vulnerability in version 5.2.3. The patch implements proper validation and restriction of filenames when processing files extracted from uploaded ZIP archives before including them with require_once. Organizations should upgrade to this version as soon as possible.

For detailed patch information, refer to the BaserCMS Release Version 5.2.3 and the GitHub Security Advisory GHSA-hv78-cwp4-8r7r.

Workarounds

  • Temporarily disable the restore functionality if patching is not immediately possible
  • Implement network-level access controls to restrict access to the baserCMS admin panel
  • Deploy a web application firewall (WAF) with rules to inspect and block malicious ZIP uploads
  • Use file system permissions to restrict write access to directories used by the restore function
bash
# Example: Restrict access to baserCMS admin panel via Apache configuration
<Directory "/var/www/html/basercms/admin">
    # Restrict to trusted IP addresses only
    Require ip 192.168.1.0/24
    Require ip 10.0.0.0/8
</Directory>

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechBasercms

  • SeverityHIGH

  • CVSS Score7.2

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-434
  • Technical References
  • BaserCMS Release Version 5.2.3
  • Vendor Resources
  • BaserCMS Security Advisory JVN_20837860

  • GitHub Security Advisory GHSA-hv78-cwp4-8r7r
  • Related CVEs
  • CVE-2026-21861: Basercms OS Command Injection Vulnerability

  • CVE-2026-30877: Basercms OS Command Injection RCE Flaw

  • CVE-2026-30880: Basercms RCE Vulnerability in Installer

  • CVE-2026-27697: Basercms Basercms SQLi Vulnerability
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