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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-1451

CVE-2025-1451: Lollms Web UI DoS Vulnerability

CVE-2025-1451 is a denial of service flaw in Lollms Web UI v13 that allows attackers to exhaust server resources through malicious multipart boundaries. This article covers the technical details, impact, and mitigation.

Updated: May 11, 2026

CVE-2025-1451 Overview

CVE-2025-1451 affects parisneo/lollms-webui v13, an open-source web interface for large language model interactions. The vulnerability stems from improper handling of multipart boundaries during file uploads. The server fails to validate or constrain the length and content of boundary strings, enabling attackers to send requests with excessively long boundaries. This triggers resource exhaustion and leads to denial of service (DoS). A prior fix in commit 483431bb blocked hyphen characters appended to the boundary, but the patch is incomplete. Attackers can substitute alternative characters such as 4 or a to achieve the same impact, leaving the application exposed.

Critical Impact

Unauthenticated remote attackers can render the lollms-webui service unavailable by sending crafted multipart upload requests, disrupting access to hosted AI workloads.

Affected Products

  • parisneo/lollms-webui v13
  • cpe:2.3:a:lollms:lollms_web_ui:13:*:*:*:*:*:*:*
  • Deployments running the unpatched multipart upload handler

Discovery Timeline

  • 2025-03-20 - CVE-2025-1451 published to NVD
  • 2025-10-15 - Last updated in NVD database

Technical Details for CVE-2025-1451

Vulnerability Analysis

The defect is categorized under [CWE-770] Allocation of Resources Without Limits or Throttling. The lollms-webui server parses multipart/form-data uploads without enforcing an upper bound on the boundary string. When a client submits a request with a boundary thousands or millions of characters long, the parser allocates memory and performs string operations proportional to that boundary across every part of the request. The cost scales linearly or worse, exhausting CPU and memory on the server.

The earlier remediation in commit 483431bb blocked hyphen (-) characters from being appended to the multipart boundary. This filter addresses only one character class. Attackers can replace hyphens with digits, alphabetic characters, or other tokens permitted by RFC 2046 boundary syntax. The parser continues to process these long boundaries, reproducing the exhaustion condition.

Root Cause

The handler accepts arbitrary boundary length and character composition. There is no maximum boundary size check, no global request size cap enforced before parsing, and no rate limiting on the upload endpoint. The hyphen-only filter from 483431bb is a character-level blocklist rather than a length constraint, leaving the underlying resource consumption pattern intact.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker sends an HTTP POST request to a file upload endpoint with a Content-Type: multipart/form-data; boundary=... header containing an oversized boundary built from non-hyphen characters. Repeated requests, or even a single sufficiently large request, consume server resources until the service becomes unresponsive. No code execution or data disclosure occurs, but availability is fully impacted.

Verified technical details are documented in the Huntr Vulnerability Report.

Detection Methods for CVE-2025-1451

Indicators of Compromise

  • HTTP requests to lollms-webui upload endpoints with Content-Type: multipart/form-data headers containing boundary values longer than a few hundred bytes
  • Boundary strings composed of repeated non-hyphen characters such as aaaa... or 4444...
  • Sudden spikes in CPU or memory utilization on the lollms-webui process correlated with inbound multipart POST traffic
  • Web server timeouts, 5xx responses, or process restarts immediately following large multipart uploads

Detection Strategies

  • Inspect web access logs and reverse proxy logs for abnormally large Content-Type header values targeting lollms-webui routes
  • Deploy WAF or reverse proxy rules that flag multipart boundaries exceeding 70 characters, the practical RFC 2046 limit
  • Correlate process resource metrics with HTTP request patterns to identify exhaustion events triggered by single clients

Monitoring Recommendations

  • Enable verbose logging on the lollms-webui upload routes and forward events to a centralized log platform
  • Track per-source-IP request rates and request header sizes on upload endpoints
  • Alert on repeated parser exceptions or worker process terminations within the application logs

How to Mitigate CVE-2025-1451

Immediate Actions Required

  • Restrict access to lollms-webui upload endpoints to trusted networks until an updated release is available
  • Deploy a reverse proxy or WAF in front of lollms-webui that enforces a hard limit on Content-Type header length and total request size
  • Monitor the upstream parisneo/lollms-webui repository for a follow-up patch that supersedes commit 483431bb with length-based validation

Patch Information

At the time of NVD publication, no vendor advisory URL is listed beyond the Huntr Vulnerability Report. The prior fix in commit 483431bb is insufficient because it blocks only hyphen characters. Operators should track the project repository and apply any release that introduces explicit boundary length validation conforming to RFC 2046.

Workarounds

  • Terminate TLS at a reverse proxy such as nginx and set client_max_body_size and large_client_header_buffers to conservative values
  • Reject multipart requests with boundaries longer than 70 bytes at the proxy layer using header inspection rules
  • Apply per-IP rate limiting on upload endpoints to slow exhaustion attempts
  • Run lollms-webui under a process manager that enforces memory limits and automatic restarts to reduce downtime during attempted exploitation
bash
# Example nginx configuration to reject oversized multipart boundaries
http {
    # Cap overall request size
    client_max_body_size 25m;
    # Limit header buffer allocation
    large_client_header_buffers 4 8k;

    map $http_content_type $bad_boundary {
        default 0;
        "~*boundary=[^;]{71,}" 1;
    }

    server {
        listen 443 ssl;
        location /upload {
            if ($bad_boundary) { return 400; }
            limit_req zone=uploads burst=5 nodelay;
            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

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.57%

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

  • NVD-CWE-noinfo
  • Technical References
  • Huntr Vulnerability Report
  • Related CVEs
  • CVE-2026-0558: Lollms Lollms DoS Vulnerability

  • CVE-2026-1117: parisneo/lollms Socket.IO DoS Vulnerability

  • CVE-2026-1115: Lollms Stored XSS Vulnerability

  • CVE-2026-1116: parisneo/lollms XSS 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