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

CVE-2026-25123: Homarr Dashboard SSRF Vulnerability

CVE-2026-25123 is a server-side request forgery flaw in Homarr dashboard that allows unauthenticated attackers to perform arbitrary server-side requests. This post explains its impact, affected versions, and mitigation steps.

Published: February 13, 2026

CVE-2026-25123 Overview

CVE-2026-25123 is a Server-Side Request Forgery (SSRF) vulnerability in Homarr, an open-source dashboard application. Prior to version 1.52.0, the public (unauthenticated) tRPC endpoint widget.app.ping accepts an arbitrary URL and performs a server-side request to that URL. This allows an unauthenticated attacker to trigger outbound HTTP requests from the Homarr server, enabling SSRF behavior and a reliable port-scanning primitive where open vs closed ports can be inferred from status codes, fetch failures, and timing differences.

Critical Impact

Unauthenticated attackers can exploit this SSRF vulnerability to probe internal network infrastructure, scan ports, and potentially access internal services that should not be externally accessible.

Affected Products

  • Homarr versions prior to 1.52.0
  • Homarr dashboard installations with exposed tRPC endpoints
  • Self-hosted Homarr instances accessible from untrusted networks

Discovery Timeline

  • 2026-02-06 - CVE-2026-25123 published to NVD
  • 2026-02-09 - Last updated in NVD database

Technical Details for CVE-2026-25123

Vulnerability Analysis

This SSRF vulnerability (CWE-918) exists in the widget.app.ping tRPC endpoint which is publicly accessible without authentication. The endpoint accepts a user-supplied URL parameter and initiates a server-side HTTP request to that URL without proper validation or restrictions. This design flaw allows attackers to abuse the Homarr server as a proxy to reach internal network resources.

The attack surface is significant because the endpoint is unauthenticated, meaning any network-adjacent attacker can exploit this vulnerability without requiring credentials. The vulnerability enables reconnaissance capabilities including port scanning of internal infrastructure by analyzing response timing and status codes.

Root Cause

The root cause of CVE-2026-25123 is the lack of URL validation and access controls on the widget.app.ping tRPC endpoint. The endpoint performs HTTP requests to arbitrary URLs without:

  1. Authentication requirements for the endpoint
  2. URL scheme validation (allowing access to internal protocols)
  3. Host validation (allowing requests to internal IP ranges)
  4. Network segmentation enforcement

This allows user-controlled input to directly influence server-side network requests, a classic SSRF anti-pattern.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can craft requests to the vulnerable tRPC endpoint specifying internal URLs or IP addresses. The server then makes the request on behalf of the attacker, effectively bypassing network perimeter controls.

The response characteristics (status codes, timing, error messages) reveal information about internal services:

  • Successful responses indicate open, responsive services
  • Connection refused errors indicate closed ports
  • Timeout differences help identify filtered vs. unreachable hosts

For technical details on the vulnerability, see the GitHub Security Advisory.

Detection Methods for CVE-2026-25123

Indicators of Compromise

  • Unusual outbound HTTP requests from the Homarr server to internal IP ranges (e.g., 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16)
  • High volume of requests to the widget.app.ping endpoint from external sources
  • Sequential port scanning patterns in server logs targeting internal hosts
  • Requests to metadata endpoints such as 169.254.169.254 (cloud instance metadata)

Detection Strategies

  • Monitor network traffic for outbound requests from the Homarr server to internal network segments
  • Implement alerting on requests to the widget.app.ping endpoint with internal IP addresses or localhost
  • Review tRPC endpoint access logs for anomalous patterns or high-frequency requests
  • Deploy web application firewall (WAF) rules to detect and block SSRF payloads

Monitoring Recommendations

  • Enable verbose logging on the Homarr application to capture all tRPC endpoint requests
  • Configure network monitoring to alert on Homarr server connections to internal services
  • Implement egress filtering and log all outbound connections from the Homarr host
  • Use SentinelOne Singularity to monitor for suspicious network behavior patterns from the application

How to Mitigate CVE-2026-25123

Immediate Actions Required

  • Upgrade Homarr to version 1.52.0 or later immediately
  • If immediate upgrade is not possible, restrict network access to the Homarr instance to trusted networks only
  • Implement network segmentation to limit the Homarr server's access to internal resources
  • Review logs for evidence of prior exploitation attempts

Patch Information

The vulnerability is fixed in Homarr version 1.52.0. Organizations should upgrade to this version or later to remediate the SSRF vulnerability. The patch addresses the lack of URL validation on the widget.app.ping endpoint. For detailed patch information, refer to the GitHub Security Advisory.

Workarounds

  • Place the Homarr instance behind a reverse proxy with authentication requirements
  • Configure firewall rules to restrict outbound connections from the Homarr server
  • Use network ACLs to prevent the Homarr server from accessing sensitive internal resources
  • Disable or block access to the widget.app.ping endpoint if not required for functionality
bash
# Example: iptables rules to restrict Homarr outbound access
# Block access to internal network ranges from Homarr host
iptables -A OUTPUT -s <homarr_host_ip> -d 10.0.0.0/8 -j DROP
iptables -A OUTPUT -s <homarr_host_ip> -d 172.16.0.0/12 -j DROP
iptables -A OUTPUT -s <homarr_host_ip> -d 192.168.0.0/16 -j DROP
iptables -A OUTPUT -s <homarr_host_ip> -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/TechHomarr

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-27797: Homarr Dashboard SSRF Vulnerability

  • CVE-2026-27796: Homarr Information Disclosure Vulnerability
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