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

CVE-2025-11346: ILIAS RCE Vulnerability via Deserialization

CVE-2025-11346 is a remote code execution flaw in ILIAS LMS caused by unsafe deserialization in the Base64 Decoding Handler. Attackers can exploit this remotely to execute arbitrary code. This article covers technical details, affected versions up to 8.23/9.13/10.1, impact assessment, and available patches in versions 8.24, 9.14, and 10.2.

Published: April 1, 2026

CVE-2025-11346 Overview

A deserialization vulnerability has been identified in ILIAS, an open-source e-learning platform widely used in educational institutions. The vulnerability exists in the unserialize function within the Base64 Decoding Handler component. Attackers can exploit this flaw by manipulating the f_settings argument, leading to insecure deserialization that could potentially enable remote code execution on vulnerable systems.

Critical Impact

Authenticated attackers can exploit this insecure deserialization vulnerability remotely to potentially execute arbitrary code on affected ILIAS installations, compromising the confidentiality, integrity, and availability of the e-learning platform.

Affected Products

  • ILIAS version 8.23 and earlier in the 8.x branch
  • ILIAS version 9.13 and earlier in the 9.x branch
  • ILIAS version 10.1 and earlier in the 10.x branch

Discovery Timeline

  • 2025-10-06 - CVE-2025-11346 published to NVD
  • 2026-01-23 - Last updated in NVD database

Technical Details for CVE-2025-11346

Vulnerability Analysis

This vulnerability is classified as an Insecure Deserialization flaw (CWE-20: Improper Input Validation). The vulnerable code path exists within the Base64 Decoding Handler component of ILIAS, specifically in the unserialize function. When processing the f_settings parameter, the application fails to properly validate or sanitize input before passing it to PHP's unserialize() function.

Insecure deserialization vulnerabilities in PHP applications are particularly dangerous because they can allow attackers to instantiate arbitrary objects and invoke magic methods (such as __wakeup() or __destruct()) that may lead to remote code execution. The attack can be launched remotely, requiring only low-level authentication to exploit.

Root Cause

The root cause of this vulnerability is the improper handling of user-controlled data in the deserialization process. The Base64 Decoding Handler accepts externally supplied data in the f_settings argument without adequate validation before passing it to the unserialize function. This allows attackers to inject malicious serialized objects that, when deserialized, can trigger unintended code execution paths through PHP object injection techniques.

Attack Vector

The vulnerability is exploitable over the network by authenticated users. An attacker must craft a malicious serialized PHP object, encode it in Base64, and submit it through the f_settings parameter. Upon processing, the ILIAS application will deserialize the malicious payload, potentially triggering a gadget chain that leads to remote code execution.

The attack flow typically involves:

  1. Identifying available PHP classes within the ILIAS codebase that have exploitable magic methods
  2. Crafting a serialized object payload that chains these classes together
  3. Base64-encoding the payload and submitting it via the vulnerable parameter
  4. The server deserializes the payload, triggering the gadget chain and executing attacker-controlled code

For detailed technical analysis of ILIAS deserialization vulnerabilities, see the SRLabs ILIAS RCE Analysis Part 2.

Detection Methods for CVE-2025-11346

Indicators of Compromise

  • Unusual Base64-encoded payloads containing PHP serialized object signatures (starting with O: or a:) in request parameters
  • Unexpected HTTP requests targeting the f_settings parameter with large or obfuscated payloads
  • Web server logs showing requests to Base64 Decoding Handler endpoints with suspicious serialized data patterns
  • Evidence of unauthorized file creation or modification on ILIAS server directories

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block serialized PHP object patterns in HTTP requests
  • Monitor application logs for deserialization errors or exceptions that may indicate exploitation attempts
  • Deploy runtime application self-protection (RASP) solutions to detect and block unsafe deserialization operations
  • Use SentinelOne Singularity to detect post-exploitation activities such as unauthorized process execution or file system modifications

Monitoring Recommendations

  • Enable verbose logging on ILIAS application servers and forward logs to a SIEM for analysis
  • Create alerts for requests containing Base64-encoded serialized PHP objects targeting known vulnerable endpoints
  • Monitor for unusual PHP process spawning or outbound network connections from web server processes
  • Implement file integrity monitoring on critical ILIAS directories to detect unauthorized modifications

How to Mitigate CVE-2025-11346

Immediate Actions Required

  • Upgrade ILIAS to version 8.24, 9.14, or 10.2 depending on your current branch immediately
  • If immediate patching is not possible, restrict access to the ILIAS platform to trusted networks only
  • Review server logs for any evidence of prior exploitation attempts
  • Ensure web application firewalls are configured to block known deserialization attack patterns

Patch Information

The ILIAS development team has released patched versions that address this vulnerability:

Current BranchVulnerable VersionsFixed Version
8.x8.23 and earlier8.24
9.x9.13 and earlier9.14
10.x10.1 and earlier10.2

Administrators should upgrade to the corresponding fixed version for their branch as soon as possible. Review the CERT-Bund Security Advisory WID-SEC-2025-2113 for additional guidance.

Workarounds

  • Implement network-level access controls to restrict ILIAS access to trusted IP ranges until patching is complete
  • Deploy a Web Application Firewall with rules to block serialized PHP objects in request parameters
  • Disable or restrict access to the vulnerable Base64 Decoding Handler component if not required for operations
  • Consider placing ILIAS behind a reverse proxy with request inspection capabilities
bash
# Example: Apache mod_security rule to block PHP serialized objects
SecRule ARGS "@rx [Oa]:\d+:" "id:1001,phase:2,deny,status:403,msg:'Potential PHP object injection blocked'"

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechIlias

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-20
  • Technical References
  • VulDB CTI ID #327231

  • VulDB #327231

  • VulDB Submission #664892

  • CERT-Bund Security Advisory WID-SEC-2025-2113

  • SRLabs ILIAS RCE Analysis Part 2
  • Related CVEs
  • CVE-2025-11345: Ilias Ilias RCE Vulnerability

  • CVE-2025-11344: Ilias Ilias RCE Vulnerability

  • CVE-2020-36944: ILIAS LMS SSRF Vulnerability via PDF Export
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