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-2026-0558

CVE-2026-0558: Lollms Lollms DoS Vulnerability

CVE-2026-0558 is a denial of service flaw in Lollms Lollms that allows unauthenticated file uploads leading to resource exhaustion. This article covers the technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-0558 Overview

A critical authentication bypass vulnerability has been discovered in parisneo/lollms, an AI-powered chatbot framework. The vulnerability exists in the /api/files/extract-text endpoint, which fails to enforce authentication requirements, allowing unauthenticated remote users to upload and process files without proper authorization. Unlike other file-related endpoints in the application, this specific endpoint lacks the Depends(get_current_active_user) dependency that should be enforcing access controls.

Critical Impact

Unauthenticated attackers can exploit this vulnerability to cause denial of service through resource exhaustion, potentially disclose sensitive information from processed files, and bypass the application's documented security policies.

Affected Products

  • parisneo/lollms versions up to and including 2.2.0
  • lollms AI chatbot framework (all versions prior to patch)
  • Deployments using the vulnerable /api/files/extract-text endpoint

Discovery Timeline

  • 2026-03-29 - CVE CVE-2026-0558 published to NVD
  • 2026-03-31 - Last updated in NVD database

Technical Details for CVE-2026-0558

Vulnerability Analysis

This vulnerability represents a broken access control flaw (CWE-287: Improper Authentication) in the lollms file processing API. The /api/files/extract-text endpoint was implemented without the authentication middleware that protects other file-related operations in the application. This inconsistency in security controls creates an attack surface that allows unauthenticated users to interact with the file processing functionality.

The vulnerability can be exploited remotely over the network without any user interaction or prior authentication. Successful exploitation allows attackers to consume server resources by uploading and processing arbitrary files, potentially leading to service degradation or complete denial of service. Additionally, depending on the file types processed and server configuration, information disclosure may occur through the text extraction functionality.

Root Cause

The root cause of this vulnerability is the missing authentication dependency on the /api/files/extract-text endpoint in the backend/routers/files.py file. While other endpoints in the same file properly implement the Depends(get_current_active_user) function to verify that requests originate from authenticated users, this particular endpoint was inadvertently deployed without this security control. This oversight violates the application's documented security architecture and creates an exploitable authentication bypass.

Attack Vector

An attacker can exploit this vulnerability by sending direct HTTP requests to the /api/files/extract-text endpoint without providing any authentication credentials. The attack can be performed remotely from any network location that can reach the lollms instance. The attacker may:

  1. Send repeated file upload requests to exhaust server CPU, memory, or disk resources
  2. Upload specially crafted files designed to maximize processing time
  3. Potentially extract sensitive information if the server processes files containing confidential data
  4. Bypass rate limiting or other security controls that depend on user authentication

The following patch shows the security fix that adds authentication dependencies to the file endpoints:

python
 from docx.oxml import parse_xml
 from docx.oxml.ns import qn
 from latex2mathml.converter import convert as latex2mathml
-
+from PIL import Image
 
 # Try to import optional document parsing libraries
 try:

Source: GitHub Commit

Note: This is a partial patch snippet. The complete fix adds the Depends(get_current_active_user) dependency to enforce authentication on the vulnerable endpoint.

Detection Methods for CVE-2026-0558

Indicators of Compromise

  • Unusual volume of requests to /api/files/extract-text endpoint from unauthenticated sources
  • Spike in file processing activities without corresponding authenticated user sessions
  • Server resource exhaustion (CPU, memory, disk) without legitimate user activity
  • Log entries showing successful file uploads without associated authentication tokens

Detection Strategies

  • Monitor HTTP access logs for requests to /api/files/extract-text that lack authentication headers or session cookies
  • Implement anomaly detection for file upload patterns that deviate from normal authenticated user behavior
  • Review application logs for text extraction operations occurring outside of authenticated sessions
  • Deploy web application firewall rules to flag high-frequency requests to the vulnerable endpoint

Monitoring Recommendations

  • Configure alerting for unusual request volumes to file processing endpoints
  • Establish baseline metrics for normal file upload patterns and alert on deviations
  • Monitor system resource utilization for signs of DoS attacks through resource exhaustion
  • Review authentication logs to identify sessions where file operations occur without proper authentication

How to Mitigate CVE-2026-0558

Immediate Actions Required

  • Upgrade lollms to a patched version that includes commit a6625dc83786ff21d109b0d545ca61b770607ef3
  • If upgrading is not immediately possible, restrict network access to the /api/files/extract-text endpoint using firewall rules or reverse proxy configuration
  • Implement rate limiting on the vulnerable endpoint to mitigate DoS risk
  • Review access logs to determine if the vulnerability has been exploited

Patch Information

The vulnerability has been addressed in the lollms repository through commit a6625dc83786ff21d109b0d545ca61b770607ef3. This patch adds the required authentication dependencies to the file endpoints, ensuring that only authenticated users can access the text extraction functionality. Organizations should update to the latest version of lollms that includes this security fix.

For additional technical details about this vulnerability, refer to the Huntr vulnerability disclosure.

Workarounds

  • Block unauthenticated access to /api/files/extract-text using a reverse proxy or web application firewall
  • Disable the text extraction endpoint entirely if not required for business operations
  • Implement IP-based access controls to limit endpoint access to trusted networks only
  • Add rate limiting rules to prevent resource exhaustion attacks while awaiting a permanent fix
bash
# Example nginx configuration to block unauthenticated access
location /api/files/extract-text {
    # Require authentication header
    if ($http_authorization = "") {
        return 401;
    }
    proxy_pass http://lollms_backend;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLollms

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.26%

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

  • NVD-CWE-noinfo
  • Technical References
  • Huntr Vulnerability Bounty
  • Vendor Resources
  • GitHub Commit Update
  • Related CVEs
  • CVE-2026-1117: parisneo/lollms Socket.IO DoS Vulnerability

  • CVE-2026-0560: Lollms SSRF Vulnerability

  • CVE-2026-0562: Lollms Auth Bypass Vulnerability (IDOR)

  • CVE-2024-5482: Lollms Web UI SSRF 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