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

CVE-2026-33340: LoLLMs WEBUI SSRF Vulnerability

CVE-2026-33340 is a critical server-side request forgery flaw in LoLLMs WEBUI allowing unauthenticated attackers to force arbitrary requests and access internal services. This article covers technical details, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33340 Overview

A critical Server-Side Request Forgery (SSRF) vulnerability has been identified in LoLLMs WEBUI, the web user interface for Lord of Large Language and Multi modal Systems. The vulnerability exists in the /api/proxy endpoint, which allows unauthenticated attackers to force the server into making arbitrary GET requests. This can be exploited to access internal services, scan local networks, or exfiltrate sensitive cloud metadata such as AWS or GCP IAM tokens.

Critical Impact

Unauthenticated attackers can leverage this SSRF vulnerability to access internal network services, cloud metadata endpoints, and potentially exfiltrate sensitive credentials including IAM tokens. No patched versions are currently available.

Affected Products

  • LoLLMs WEBUI (all known existing versions)
  • lollms-webui server component with /api/proxy endpoint
  • Deployments exposed to network access without additional access controls

Discovery Timeline

  • 2026-03-24 - CVE-2026-33340 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-33340

Vulnerability Analysis

This SSRF vulnerability stems from missing authentication on the @router.post("/api/proxy") endpoint within the LoLLMs WEBUI application. The endpoint is designed to proxy HTTP requests but lacks proper access controls and input validation, allowing any unauthenticated user to submit arbitrary URLs for the server to fetch. The vulnerable code is located in lollms/server/endpoints/lollms_apps.py at lines 443-450.

The weakness is classified under CWE-306 (Missing Authentication for Critical Function), which accurately describes the root cause: a critical server-side function that should require authentication is exposed without any access controls.

Root Cause

The root cause of this vulnerability is the absence of authentication checks on the /api/proxy endpoint. The endpoint accepts POST requests containing target URLs and processes them without verifying the identity or authorization of the requester. Additionally, there appears to be insufficient URL validation to restrict requests to safe destinations, allowing attackers to target internal resources, localhost services, and cloud metadata endpoints.

Attack Vector

The attack vector is network-based, requiring no user interaction or prior authentication. An attacker can directly send crafted POST requests to the /api/proxy endpoint from any network location with access to the LoLLMs WEBUI server. The attack flow involves:

  1. The attacker identifies a LoLLMs WEBUI instance exposed on the network
  2. A malicious POST request is sent to the /api/proxy endpoint containing an internal URL target
  3. The server processes the request and initiates an HTTP GET request to the attacker-specified URL
  4. The response from the internal service is returned to the attacker, potentially exposing sensitive data

Common exploitation targets include cloud metadata services (e.g., http://169.254.169.254/latest/meta-data/), internal network services, and localhost-bound applications. For detailed technical information about the vulnerability, see the GitHub Security Advisory GHSA-mcwr-5469-pxj4 and the vulnerable code reference.

Detection Methods for CVE-2026-33340

Indicators of Compromise

  • Unusual POST requests to /api/proxy endpoint from external IP addresses
  • Server-initiated HTTP requests to internal IP ranges (10.x.x.x, 172.16.x.x, 192.168.x.x) or localhost
  • Requests targeting cloud metadata endpoints (169.254.169.254)
  • Abnormal outbound traffic patterns from the LoLLMs WEBUI server

Detection Strategies

  • Monitor web server access logs for POST requests to /api/proxy from unauthenticated or suspicious sources
  • Implement network monitoring to detect the server making unexpected outbound HTTP requests to internal IP ranges
  • Configure cloud provider logging to detect metadata service access from application servers
  • Deploy web application firewall (WAF) rules to inspect and block suspicious proxy requests

Monitoring Recommendations

  • Enable verbose logging on the LoLLMs WEBUI application to capture all proxy endpoint requests
  • Set up alerts for outbound connections from the LoLLMs server to internal network ranges or metadata endpoints
  • Monitor for reconnaissance activity such as sequential requests to common internal service ports
  • Review cloud audit logs for unauthorized metadata API access patterns

How to Mitigate CVE-2026-33340

Immediate Actions Required

  • Restrict network access to LoLLMs WEBUI instances using firewall rules to limit exposure to trusted networks only
  • Implement a reverse proxy with authentication in front of the LoLLMs WEBUI to require credentials for all API endpoints
  • Block outbound requests from the LoLLMs server to internal IP ranges and cloud metadata endpoints at the network level
  • Consider taking the application offline if it cannot be adequately protected until a patch is available

Patch Information

As of the publication date, no patched versions of LoLLMs WEBUI are available to address this vulnerability. Organizations should monitor the GitHub Security Advisory for updates and patch releases from the maintainer.

Workarounds

  • Deploy a web application firewall (WAF) rule to block or require authentication for requests to the /api/proxy endpoint
  • Use network segmentation to isolate the LoLLMs WEBUI server from sensitive internal services
  • Configure instance metadata service (IMDS) to use IMDSv2 with session tokens, reducing the impact of SSRF attacks in cloud environments
  • Implement egress filtering to prevent the server from making arbitrary outbound connections
bash
# Example: Block access to cloud metadata endpoint using iptables on the LoLLMs server
iptables -A OUTPUT -d 169.254.169.254 -j DROP

# Example: Restrict access to the proxy endpoint using nginx
location /api/proxy {
    deny all;
    # Or require authentication
    # auth_basic "Restricted Access";
    # auth_basic_user_file /etc/nginx/.htpasswd;
}

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechLollms Webui

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-306
  • Technical References
  • GitHub Code Snippet

  • GitHub Security Advisory GHSA-mcwr-5469-pxj4
  • Related CVEs
  • CVE-2024-2356: Lollms-WebUI LFI to RCE 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