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

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

CVE-2026-1117 is a denial of service vulnerability in parisneo/lollms 5.9.0 that allows unauthenticated access to Socket.IO events, enabling resource exhaustion and state corruption. This article covers technical details, impact, and mitigation.

Published: February 6, 2026

CVE-2026-1117 Overview

A vulnerability in the lollms_generation_events.py component of parisneo/lollms version 5.9.0 allows unauthenticated access to sensitive Socket.IO events. The add_events function registers event handlers such as generate_text, cancel_generation, generate_msg, and generate_msg_from without implementing authentication or authorization checks. This allows unauthenticated clients to execute resource-intensive or state-altering operations, leading to potential denial of service, state corruption, and race conditions.

Additionally, the use of global flags (lollmsElfServer.busy, lollmsElfServer.cancel_gen) for state management in a multi-client environment introduces further vulnerabilities, enabling one client's actions to affect the server's state and other clients' operations. The lack of proper access control and reliance on insecure global state management significantly impacts the availability and integrity of the service.

Critical Impact

Unauthenticated attackers can execute resource-intensive operations causing denial of service, corrupt application state, and trigger race conditions affecting all connected clients through exposed Socket.IO events.

Affected Products

  • parisneo/lollms version 5.9.0
  • lollms_generation_events.py component
  • Socket.IO event handlers (generate_text, cancel_generation, generate_msg, generate_msg_from)

Discovery Timeline

  • 2026-02-02 - CVE CVE-2026-1117 published to NVD
  • 2026-02-03 - Last updated in NVD database

Technical Details for CVE-2026-1117

Vulnerability Analysis

This vulnerability falls under CWE-284 (Improper Access Control), where the application fails to restrict access to sensitive functionality. The lollms_generation_events.py component exposes critical Socket.IO event handlers without any form of authentication or authorization verification. When the add_events function registers handlers for operations like generate_text and cancel_generation, it does so in a way that allows any client connecting to the Socket.IO endpoint to invoke these operations.

The architectural flaw is compounded by the use of global state flags for managing server operations. Variables such as lollmsElfServer.busy and lollmsElfServer.cancel_gen are shared across all client connections, creating a dangerous multi-tenant state management issue where one malicious client can manipulate the operational state affecting all legitimate users.

Root Cause

The root cause of this vulnerability is the absence of authentication and authorization middleware in the Socket.IO event registration flow within lollms_generation_events.py. The add_events function directly binds event handlers to sensitive operations without validating the identity or permissions of the connecting client. Additionally, the reliance on global state variables for managing server-wide operations creates inherent race conditions and state corruption vulnerabilities in concurrent environments.

Attack Vector

The attack vector is network-based, requiring no prior authentication or user interaction. An attacker can connect to the exposed Socket.IO endpoint and directly invoke any of the registered event handlers. By repeatedly triggering resource-intensive operations like generate_text, an attacker can exhaust server resources causing denial of service. Alternatively, by manipulating the cancel_generation event, an attacker can disrupt legitimate text generation requests from other users. The global state management allows a single malicious client to set lollmsElfServer.busy or lollmsElfServer.cancel_gen flags, effectively controlling server behavior for all connected clients and creating race conditions when multiple clients attempt concurrent operations.

Detection Methods for CVE-2026-1117

Indicators of Compromise

  • Unusual volume of Socket.IO connection attempts from single IP addresses or unexpected sources
  • High frequency of generate_text, cancel_generation, generate_msg, or generate_msg_from event calls without corresponding authenticated sessions
  • Server resource exhaustion patterns correlating with Socket.IO event activity
  • Frequent state inconsistencies or unexpected cancellation of legitimate generation operations

Detection Strategies

  • Implement network monitoring to track Socket.IO connection patterns and identify anomalous connection rates
  • Deploy application-level logging to capture all Socket.IO event invocations with source IP and timestamp metadata
  • Configure rate limiting alerts for excessive event handler invocations from individual connections
  • Monitor server CPU and memory utilization for spikes correlating with Socket.IO activity

Monitoring Recommendations

  • Enable detailed logging for all Socket.IO event handlers in the lollms application
  • Set up alerts for multiple concurrent connections triggering generation events without valid session tokens
  • Monitor for patterns of cancel_generation events that interrupt legitimate user operations
  • Track global state flag changes (lollmsElfServer.busy, lollmsElfServer.cancel_gen) to identify unauthorized modifications

How to Mitigate CVE-2026-1117

Immediate Actions Required

  • Upgrade parisneo/lollms to a patched version that includes the security fix
  • Restrict network access to the Socket.IO endpoint to trusted clients only using firewall rules
  • Implement authentication middleware at the application or reverse proxy level if immediate patching is not possible
  • Consider temporarily disabling the affected Socket.IO events if the feature is not critical to operations

Patch Information

A security patch has been released by the maintainer. The fix is available in the commit referenced below, which implements proper access control checks for the affected Socket.IO event handlers. Users should update to a version containing commit 36a5b513dfefe9c2913bf9b618457b4fea603e3b or later. For technical details about the fix, see the GitHub commit changes. Additional vulnerability details are available through the Huntr bounty report.

Workarounds

  • Deploy a reverse proxy with authentication in front of the lollms application to enforce access control at the network layer
  • Implement IP allowlisting to restrict Socket.IO connections to known, trusted client addresses
  • Disable the affected event handlers by commenting out their registration in lollms_generation_events.py if the functionality is not required
  • Use network segmentation to isolate the lollms service from untrusted network zones
bash
# Example: Restrict Socket.IO access using iptables (Linux)
# Allow only trusted IP range to access lollms Socket.IO port
iptables -A INPUT -p tcp --dport 9600 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 9600 -j DROP

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 Score8.2

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-284
  • Technical References
  • GitHub Commit Changes

  • Huntr Bounty Details
  • Related CVEs
  • CVE-2026-0558: Lollms Lollms DoS Vulnerability

  • CVE-2026-0560: Lollms SSRF Vulnerability

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

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