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

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

CVE-2026-0562 is an authorization bypass vulnerability in Lollms that allows authenticated users to manipulate friend requests via IDOR attacks. This article covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-0562 Overview

A critical security vulnerability has been identified in parisneo/lollms versions prior to 2.2.0 that allows any authenticated user to accept or reject friend requests belonging to other users. The respond_request() function in backend/routers/friends.py does not implement proper authorization checks, enabling Insecure Direct Object Reference (IDOR) attacks. This vulnerability affects the /api/friends/requests/{friendship_id} endpoint, which fails to verify whether the authenticated user is part of the friendship or the intended recipient of the request.

Critical Impact

Authenticated attackers can manipulate friend request responses for any user, leading to unauthorized access, privacy violations, and potential social engineering attacks through forced friend connections.

Affected Products

  • lollms versions prior to 2.2.0
  • parisneo/lollms backend API components
  • lollms friend request management functionality

Discovery Timeline

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

Technical Details for CVE-2026-0562

Vulnerability Analysis

This vulnerability is classified as CWE-863 (Incorrect Authorization), specifically manifesting as an Insecure Direct Object Reference (IDOR) flaw. The vulnerable endpoint allows any authenticated user to interact with friendship records they do not own by simply manipulating the friendship_id parameter in the API request path.

The attack can be performed over the network without any user interaction. An attacker with low-privilege access (any authenticated user) can exploit this vulnerability to achieve significant confidentiality and integrity impacts by manipulating social connections between arbitrary users. The vulnerability also has a limited availability impact on the affected system's friend management functionality.

Root Cause

The root cause lies in the respond_request() function within backend/routers/friends.py. This function processes friend request responses but fails to verify that the authenticated user making the request is actually the intended recipient of the friend request or a legitimate party to the friendship. The endpoint blindly trusts the friendship_id parameter without validating ownership or authorization.

Attack Vector

The attack vector is network-based, targeting the REST API endpoint /api/friends/requests/{friendship_id}. An attacker can enumerate or guess valid friendship_id values and submit accept or reject responses for friend requests belonging to other users. This allows the attacker to:

  1. Force friend connections between arbitrary users by accepting pending requests
  2. Block legitimate friend connections by rejecting pending requests
  3. Manipulate the social graph of the application for social engineering purposes

The vulnerability exists because the endpoint only checks authentication (is the user logged in?) but not authorization (does this user have permission to act on this specific friendship request?). An attacker simply needs to send authenticated API requests with different friendship_id values to exploit this flaw.

Detection Methods for CVE-2026-0562

Indicators of Compromise

  • Unusual patterns of friend request accept/reject actions originating from single user accounts
  • API logs showing access to /api/friends/requests/{friendship_id} endpoints with sequential or enumerated friendship IDs
  • User complaints about unexpected friend connections or rejected friend requests they didn't initiate
  • High volume of friend request API calls from individual authenticated sessions

Detection Strategies

  • Monitor API access logs for authenticated users accessing friendship endpoints with IDs that don't belong to their account
  • Implement rate limiting detection on the /api/friends/requests/ endpoint to identify enumeration attempts
  • Deploy application-layer intrusion detection rules to flag sequential friendship_id access patterns
  • Enable detailed audit logging for all friend request state changes including the acting user

Monitoring Recommendations

  • Configure alerts for friend request API endpoints receiving requests at abnormal rates
  • Implement user behavior analytics to detect accounts manipulating friendships they shouldn't have access to
  • Review API gateway logs for patterns consistent with IDOR exploitation attempts
  • Establish baseline metrics for normal friend request activity to identify anomalies

How to Mitigate CVE-2026-0562

Immediate Actions Required

  • Upgrade lollms to version 2.2.0 or later immediately
  • Review friend connection records for unauthorized modifications if running a vulnerable version
  • Audit API access logs for potential exploitation attempts prior to patching
  • Notify users if unauthorized friend connections may have been established

Patch Information

The vulnerability has been addressed in lollms version 2.2.0. The fix is available in commit c46297799f8e1e23305373f8350746b905e0e83c. Organizations should review the GitHub Commit Details for technical information about the patch implementation.

Additional details about the vulnerability discovery and disclosure process are available in the Huntr Bounty Report.

Workarounds

  • If immediate upgrade is not possible, consider temporarily disabling the friend request functionality at the reverse proxy or API gateway level
  • Implement additional authorization middleware to validate friendship ownership before processing requests
  • Restrict access to the /api/friends/requests/ endpoints to trusted networks while awaiting patch deployment
  • Monitor all friend request API activity closely until the patch can be applied
bash
# Temporary mitigation: Block vulnerable endpoint at reverse proxy (nginx example)
location ~ ^/api/friends/requests/ {
    # Temporarily deny access until patch is applied
    deny all;
    return 503;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechLollms

  • SeverityHIGH

  • CVSS Score8.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-863
  • Technical References
  • Huntr Bounty Report
  • Vendor Resources
  • GitHub Commit Details
  • Related CVEs
  • CVE-2026-0558: Lollms Lollms DoS Vulnerability

  • CVE-2026-0560: Lollms SSRF Vulnerability

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

  • 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