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

CVE-2025-13595: CIBELES AI WordPress Plugin RCE Flaw

CVE-2025-13595 is a remote code execution vulnerability in the CIBELES AI WordPress plugin affecting versions up to 1.10.8. Unauthenticated attackers can exploit this flaw to upload arbitrary files. Learn about the technical details, impact, and mitigation strategies.

Published: March 18, 2026

CVE-2025-13595 Overview

The CIBELES AI plugin for WordPress contains a critical arbitrary file upload vulnerability due to a missing capability check in the actualizador_git.php file. This security flaw affects all versions up to and including 1.10.8, allowing unauthenticated attackers to download arbitrary GitHub repositories and overwrite plugin files on the affected site's server. This vulnerability can potentially lead to remote code execution, giving attackers complete control over compromised WordPress installations.

Critical Impact

Unauthenticated attackers can exploit this vulnerability to upload malicious files and achieve remote code execution on vulnerable WordPress sites without any authentication requirements.

Affected Products

  • CIBELES AI WordPress Plugin versions ≤ 1.10.8
  • WordPress installations running vulnerable versions of CIBELES AI plugin

Discovery Timeline

  • 2025-11-25 - CVE-2025-13595 published to NVD
  • 2025-12-01 - Last updated in NVD database

Technical Details for CVE-2025-13595

Vulnerability Analysis

This vulnerability is classified as CWE-434 (Unrestricted Upload of File with Dangerous Type). The core issue stems from the actualizador_git.php file lacking proper capability checks before processing requests. Without authentication or authorization validation, any remote attacker can interact with this endpoint to manipulate plugin files on the server.

The attack surface is particularly dangerous because WordPress plugins typically have write access to the web server's file system. By exploiting this flaw, attackers can download content from arbitrary GitHub repositories and use it to overwrite existing plugin files, effectively injecting malicious code into the WordPress installation.

Root Cause

The root cause of this vulnerability is the absence of proper access control mechanisms in the actualizador_git.php file. WordPress provides capability checking functions like current_user_can() to verify that users have appropriate permissions before executing sensitive operations. The vulnerable code path fails to implement these checks, allowing unauthenticated users to trigger file operations that should be restricted to administrators.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can directly send requests to the vulnerable actualizador_git.php endpoint to trigger the file download and overwrite functionality. The exploitation process involves:

  1. Identifying WordPress sites running vulnerable versions of the CIBELES AI plugin
  2. Crafting requests to the actualizador_git.php endpoint
  3. Specifying a malicious GitHub repository containing code to be deployed
  4. The vulnerable endpoint downloads and overwrites plugin files without validation
  5. The attacker achieves code execution through the injected malicious files

Additional technical details and a proof-of-concept are available in the GitHub PoC Repository and the Ryan Kozak CVE Analysis.

Detection Methods for CVE-2025-13595

Indicators of Compromise

  • Unexpected HTTP requests to /wp-content/plugins/cibeles-ai/actualizador_git.php from external IP addresses
  • Modified timestamps on plugin files within the cibeles-ai directory
  • Unauthorized or unknown files appearing in the WordPress plugins directory
  • Web server logs showing POST requests to actualizador_git.php without prior authentication

Detection Strategies

  • Monitor web application firewall (WAF) logs for requests targeting actualizador_git.php
  • Implement file integrity monitoring (FIM) on WordPress plugin directories to detect unauthorized changes
  • Review access logs for unauthenticated requests to WordPress plugin PHP files
  • Deploy network-based intrusion detection rules to alert on exploitation attempts

Monitoring Recommendations

  • Enable detailed logging for all requests to the WordPress wp-content/plugins/ directory
  • Configure alerts for file modifications in the cibeles-ai plugin directory
  • Implement real-time monitoring of outbound connections from the web server to GitHub
  • Set up periodic hash validation of plugin files against known-good baselines

How to Mitigate CVE-2025-13595

Immediate Actions Required

  • Update the CIBELES AI plugin to a patched version immediately (versions after 1.10.8)
  • If an update is not available, disable and remove the CIBELES AI plugin until a patch is released
  • Conduct a thorough review of plugin files for any unauthorized modifications
  • Scan the WordPress installation for webshells or other malicious code that may have been injected

Patch Information

A security patch has been released addressing this vulnerability. The fix can be reviewed in the WordPress Plugin Changeset. WordPress administrators should update to the latest version of the CIBELES AI plugin through the WordPress admin dashboard or by downloading directly from the WordPress plugin repository. Additional vulnerability details are available in the Wordfence Vulnerability Report.

Workarounds

  • Block direct access to actualizador_git.php using web server configuration rules
  • Implement IP-based access restrictions to the WordPress admin area and plugin directories
  • Deploy a web application firewall (WAF) with rules to block requests to the vulnerable endpoint
  • Consider removing the plugin entirely if it is not critical to site functionality
bash
# Apache .htaccess rule to block access to the vulnerable file
<Files "actualizador_git.php">
    Order Allow,Deny
    Deny from all
</Files>

# Nginx configuration to block access
location ~ /wp-content/plugins/cibeles-ai/actualizador_git\.php$ {
    deny all;
    return 403;
}

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechWordpress

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.28%

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

  • WordPress Plugin Code

  • WordPress Plugin Changeset

  • Ryan Kozak CVE Analysis

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-1830: WordPress Quick Playground RCE Vulnerability

  • CVE-2026-3535: WordPress DSGVO Google Fonts RCE Flaw

  • CVE-2026-4808: WordPress DevApps Plugin RCE Vulnerability

  • CVE-2026-2942: ProSolution WP Client 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