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

CVE-2026-0560: Lollms SSRF Vulnerability

CVE-2026-0560 is a Server-Side Request Forgery flaw in parisneo/lollms that allows attackers to make arbitrary requests to internal services and cloud metadata endpoints. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: April 2, 2026

CVE-2026-0560 Overview

A Server-Side Request Forgery (SSRF) vulnerability exists in parisneo/lollms versions prior to 2.2.0, specifically in the /api/files/export-content endpoint. The _download_image_to_temp() function in backend/routers/files.py fails to validate user-controlled URLs, allowing attackers to make arbitrary HTTP requests to internal services and cloud metadata endpoints. This vulnerability can lead to internal network access, cloud metadata access, information disclosure, port scanning, and potentially remote code execution.

Critical Impact

Unauthenticated attackers can exploit this SSRF vulnerability to access internal network resources, retrieve cloud provider metadata credentials, and potentially achieve remote code execution through chained attacks.

Affected Products

  • lollms versions prior to 2.2.0
  • parisneo/lollms (all installations using the vulnerable /api/files/export-content endpoint)
  • Systems running lollms with network access to internal services or cloud metadata endpoints

Discovery Timeline

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

Technical Details for CVE-2026-0560

Vulnerability Analysis

This SSRF vulnerability exists due to insufficient input validation in the lollms file export functionality. The _download_image_to_temp() function accepts user-supplied URLs without proper sanitization or allowlist validation. When processing requests to the /api/files/export-content endpoint, the application blindly follows user-provided URLs, enabling attackers to redirect server-side requests to arbitrary destinations.

The vulnerability is particularly dangerous in cloud environments where attackers can target metadata endpoints (such as http://169.254.169.254/ on AWS) to retrieve instance credentials, IAM roles, and sensitive configuration data. Internal network scanning becomes trivial as attackers can enumerate services behind firewalls that would otherwise be inaccessible.

Root Cause

The root cause is the absence of URL validation in the _download_image_to_temp() function located in backend/routers/files.py. The function directly processes user-controlled URLs without implementing security controls such as protocol allowlisting (restricting to HTTP/HTTPS only), destination IP blocking (preventing requests to private IP ranges and localhost), or domain allowlisting. This lack of defense-in-depth allows attackers to manipulate the server into making requests on their behalf.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can craft malicious requests to the /api/files/export-content endpoint, supplying URLs pointing to internal resources or cloud metadata services. The server processes these requests and returns the response content to the attacker, effectively acting as a proxy to bypass network segmentation and firewall protections.

The vulnerability mechanism works as follows: when the /api/files/export-content endpoint receives a request containing a URL parameter, the _download_image_to_temp() function retrieves the content at that URL without validation. Attackers can supply URLs targeting internal IP ranges (e.g., http://192.168.1.1/admin), cloud metadata endpoints (e.g., http://169.254.169.254/latest/meta-data/), or localhost services (e.g., http://127.0.0.1:6379/). The server fetches the content and returns it to the attacker, enabling reconnaissance, credential theft, and further exploitation. For detailed technical information, see the Huntr Bounty Listing.

Detection Methods for CVE-2026-0560

Indicators of Compromise

  • Outbound HTTP requests from the lollms server to internal IP ranges (10.x.x.x, 172.16.x.x-172.31.x.x, 192.168.x.x)
  • Requests to cloud metadata endpoints such as 169.254.169.254, metadata.google.internal, or Azure metadata services
  • Unusual request patterns to the /api/files/export-content endpoint with suspicious URL parameters
  • Server-side connections to localhost or loopback addresses from the application context

Detection Strategies

  • Monitor network traffic for outbound connections from the lollms application to RFC 1918 private address spaces
  • Implement Web Application Firewall (WAF) rules to detect SSRF patterns in URL parameters targeting internal resources
  • Configure intrusion detection systems to alert on requests containing metadata endpoint URLs
  • Review application logs for anomalous requests to the /api/files/export-content endpoint with non-standard URL schemes or internal destinations

Monitoring Recommendations

  • Enable detailed logging for all requests to the /api/files/export-content endpoint including full URL parameters
  • Set up alerts for connections to cloud metadata IP addresses (169.254.169.254) originating from application servers
  • Monitor for port scanning behavior patterns where multiple internal ports are probed in sequence
  • Implement egress filtering and log all denied outbound connection attempts from the application tier

How to Mitigate CVE-2026-0560

Immediate Actions Required

  • Upgrade lollms to version 2.2.0 or later which contains the security fix
  • If immediate upgrade is not possible, restrict network access to the lollms application using firewall rules
  • Block outbound connections from the lollms server to internal network ranges and cloud metadata endpoints
  • Review access logs for evidence of prior exploitation attempts

Patch Information

The vulnerability has been addressed in lollms version 2.2.0. The fix is available in commit 76a54f0df2df8a5b254aa627d487b5dc939a0263. Administrators should update to the patched version by pulling the latest release from the official repository. For details on the specific code changes, refer to the GitHub Commit Changes.

Workarounds

  • Implement network-level egress filtering to prevent the lollms server from connecting to internal IP ranges and metadata endpoints
  • Deploy a reverse proxy or WAF in front of the application to filter requests containing suspicious URL patterns
  • Restrict access to the /api/files/export-content endpoint to trusted users only via authentication controls
  • If the export functionality is not required, consider disabling or removing the affected endpoint entirely

Network segmentation example for blocking SSRF targets:

bash
# Block outbound connections to private IP ranges from application server
iptables -A OUTPUT -d 10.0.0.0/8 -j DROP
iptables -A OUTPUT -d 172.16.0.0/12 -j DROP
iptables -A OUTPUT -d 192.168.0.0/16 -j DROP
iptables -A OUTPUT -d 169.254.169.254 -j DROP

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechLollms

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • Huntr Bounty Listing
  • Vendor Resources
  • GitHub Commit Changes
  • Related CVEs
  • CVE-2024-5482: Lollms Web UI SSRF Vulnerability

  • CVE-2026-0558: Lollms Lollms DoS Vulnerability

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

  • CVE-2026-1117: parisneo/lollms Socket.IO DoS 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