A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2024-2366

CVE-2024-2366: Lollms Web UI RCE Vulnerability

CVE-2024-2366 is a remote code execution flaw in Lollms Web UI caused by insufficient path sanitization in the reinstall_binding function. Attackers can exploit path traversal to execute arbitrary code. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: May 26, 2026

CVE-2024-2366 Overview

CVE-2024-2366 is a remote code execution vulnerability in the parisneo/lollms-webui application. The flaw resides in the reinstall_binding functionality implemented in lollms_core/lollms/server/endpoints/lollms_binding_infos.py. Insufficient path sanitization allows an authenticated attacker to traverse directories by manipulating the binding_path parameter. By pointing the parameter to an attacker-controlled directory containing a malicious __init__.py file, the attacker can execute arbitrary Python code on the server. The vulnerability is classified under CWE-77 (Improper Neutralization of Special Elements used in a Command).

Critical Impact

Successful exploitation grants attackers arbitrary code execution on the host running lollms-webui, leading to full system compromise.

Affected Products

  • lollms lollms_web_ui (latest version at time of disclosure)
  • Deployments exposing the reinstall_binding endpoint
  • Self-hosted lollms-webui installations accessible over the network

Discovery Timeline

  • 2024-05-16 - CVE-2024-2366 published to NVD
  • 2025-07-09 - Last updated in NVD database

Technical Details for CVE-2024-2366

Vulnerability Analysis

The reinstall_binding endpoint accepts a binding_path parameter and uses it to locate and load a Python binding module. The server does not validate or canonicalize this path before treating it as a trusted module directory. Python's import mechanism then loads the __init__.py file from the supplied path, executing its top-level statements within the server process. This combination of unsanitized input and dynamic code loading converts a directory reference into arbitrary code execution.

Root Cause

The root cause is improper neutralization of path traversal sequences in the binding_path parameter. The application trusts attacker-supplied input to identify a binding directory and does not enforce that the path stays within a known bindings directory. As a result, sequences such as ../ or absolute paths to attacker-controlled locations are accepted without rejection.

Attack Vector

The attack requires network access and low-privilege authenticated access to the lollms-webui instance, plus user interaction to trigger the reinstall flow. An attacker first places or uploads a malicious __init__.py to a writable location on the server, for example a shared upload directory. The attacker then invokes reinstall_binding with a binding_path pointing to that directory via traversal. When the application imports the binding, the Python interpreter runs the malicious code with the privileges of the lollms-webui process.

No verified public proof-of-concept code is available. See the Huntr Vulnerability Bounty report for additional technical context.

Detection Methods for CVE-2024-2366

Indicators of Compromise

  • HTTP requests to the reinstall_binding endpoint containing path traversal sequences such as ../ or absolute filesystem paths in the binding_path parameter
  • Unexpected __init__.py files written to upload, temp, or user-writable directories on the lollms-webui host
  • New child processes spawned by the lollms-webui Python process, especially shells, network utilities, or package managers
  • Outbound network connections from the lollms-webui process to unknown hosts shortly after a reinstall request

Detection Strategies

  • Inspect web server and application logs for reinstall_binding calls that reference paths outside the configured bindings directory
  • Monitor the filesystem for creation or modification of __init__.py files in non-standard locations using file integrity monitoring
  • Alert on Python interpreter processes that launch interactive shells or execute commands inconsistent with normal application behavior

Monitoring Recommendations

  • Forward application, web server, and host telemetry to a centralized analytics platform for correlation across request, file, and process events
  • Baseline normal binding_path values used by the application and alert on deviations
  • Track authenticated session activity and flag low-privilege accounts that invoke binding management endpoints

How to Mitigate CVE-2024-2366

Immediate Actions Required

  • Restrict network exposure of the lollms-webui interface to trusted networks or place it behind an authenticated reverse proxy
  • Disable or block access to the reinstall_binding endpoint until a patched version is deployed
  • Audit user accounts and remove unnecessary access to binding management functionality
  • Review the filesystem for unauthorized __init__.py files and suspicious binding directories

Patch Information

Refer to the Huntr Vulnerability Bounty report and the upstream parisneo/lollms-webui repository for the fixed release. Upgrade to a version where reinstall_binding validates that binding_path resolves inside the allowed bindings directory.

Workarounds

  • Run lollms-webui as a low-privileged, non-root user inside a container or sandbox to limit the blast radius of code execution
  • Mount upload and temporary directories with noexec semantics and prevent the application user from writing into Python import paths
  • Enforce strict allowlist validation on any reverse proxy or web application firewall in front of lollms-webui to reject traversal patterns in binding_path
bash
# Example reverse proxy rule to block path traversal in binding_path
# nginx location block fronting lollms-webui
location /reinstall_binding {
    if ($args ~* "binding_path=.*(\.\./|%2e%2e/|/etc/|/tmp/)") {
        return 403;
    }
    proxy_pass http://lollms_upstream;
}

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechLollms

  • SeverityCRITICAL

  • CVSS Score9.0

  • EPSS Probability2.29%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-77
  • Vendor Resources
  • Huntr Vulnerability Bounty
  • Related CVEs
  • CVE-2024-2358: Lollms Web UI RCE Vulnerability

  • CVE-2024-4326: Lollms Web UI RCE Vulnerability

  • CVE-2024-4320: Lollms Web UI RCE Vulnerability

  • CVE-2024-2359: Lollms Web UI RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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