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-2025-15104

CVE-2025-15104: Nu Html Checker SSRF Vulnerability

CVE-2025-15104 is a server-side request forgery flaw in Nu Html Checker that allows attackers to bypass hostname protections and access internal resources via DNS rebinding. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: January 23, 2026

CVE-2025-15104 Overview

CVE-2025-15104 is a Server-Side Request Forgery (SSRF) vulnerability in Nu Html Checker (validator.nu) that allows remote attackers to bypass hostname-based protections and make the server perform arbitrary HTTP/HTTPS requests to internal resources, including localhost services. While the validator implements protections to block direct access to localhost and 127.0.0.1, these controls can be circumvented using DNS rebinding techniques or domains that resolve to loopback addresses.

Critical Impact

Attackers can exploit this SSRF vulnerability to access internal network resources, potentially exposing sensitive services, internal APIs, and cloud metadata endpoints that should not be accessible from the public internet.

Affected Products

  • Nu Html Checker (vnu) - commit 23f090a11bab8d0d4e698f1ffc197a4fe226a9cd and potentially earlier versions
  • validator.nu web service deployments
  • Self-hosted Nu Html Checker instances

Discovery Timeline

  • January 16, 2026 - CVE-2025-15104 published to NVD
  • January 16, 2026 - Last updated in NVD database

Technical Details for CVE-2025-15104

Vulnerability Analysis

This vulnerability falls under CWE-918 (Server-Side Request Forgery), where the application accepts a URL from user input and fetches its content without adequately validating whether the destination is safe. The Nu Html Checker is designed to validate HTML documents by fetching URLs provided by users. To prevent abuse, it implements hostname-based blocking for common localhost addresses.

However, the protection mechanism is insufficient because it only checks for literal string matches against known localhost identifiers. Attackers can bypass this restriction through multiple techniques including DNS rebinding, where a domain initially resolves to a benign IP address during validation but resolves to a loopback address (127.0.0.1) when the actual request is made.

Root Cause

The root cause is incomplete input validation when processing user-supplied URLs. The hostname validation logic fails to account for:

  1. DNS rebinding attacks where domain resolution changes between validation and request time
  2. Alternative representations of loopback addresses (e.g., 127.0.0.2, 0.0.0.0, IPv6 ::1)
  3. Domains that legitimately resolve to loopback addresses
  4. Time-of-check to time-of-use (TOCTOU) race conditions in DNS resolution

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can craft a malicious URL using a domain they control configured for DNS rebinding. When submitted to the Nu Html Checker:

  1. The attacker configures a DNS server to return different IP addresses for the same domain based on timing
  2. Initial DNS resolution returns a safe external IP, passing the hostname validation
  3. Subsequent DNS resolution during the actual HTTP request returns 127.0.0.1
  4. The validator fetches content from the internal localhost service

This technique can be used to probe internal services, access cloud metadata endpoints (e.g., AWS 169.254.169.254), or exfiltrate data from services running on the same host.

Detection Methods for CVE-2025-15104

Indicators of Compromise

  • Unusual outbound requests from the validator service to internal IP ranges
  • DNS queries for known DNS rebinding domains or suspicious short-TTL domains
  • Access logs showing requests to cloud metadata endpoints or internal service ports
  • Network traffic from the validator to localhost or private IP ranges (10.x.x.x, 172.16.x.x, 192.168.x.x)

Detection Strategies

  • Monitor network egress from validator instances for connections to RFC 1918 private addresses
  • Implement DNS logging and alert on domains with suspiciously low TTL values
  • Deploy application-layer firewalls that inspect and block requests to internal resources
  • Use SentinelOne Singularity to detect anomalous network behavior from web application processes

Monitoring Recommendations

  • Enable verbose logging for the Nu Html Checker service to capture all URL fetch attempts
  • Implement network segmentation to limit the impact of successful SSRF exploitation
  • Deploy intrusion detection rules for known DNS rebinding patterns
  • Monitor for unusual process network activity using endpoint detection and response (EDR) solutions

How to Mitigate CVE-2025-15104

Immediate Actions Required

  • Restrict network access from the validator service to only necessary external endpoints
  • Deploy a web application firewall (WAF) with SSRF protection capabilities
  • Implement IP-based validation at the network layer rather than relying solely on hostname checks
  • Consider disabling the URL validation feature if not strictly required

Patch Information

As of the last NVD update on January 16, 2026, no official patch has been documented. Monitor the GitHub Validator Repository for security updates and patches. Review the Fluid Attacks Advisory for additional remediation guidance.

Workarounds

  • Configure firewall rules to block outbound connections from the validator to internal IP ranges and localhost
  • Use a DNS resolver that implements rebinding protection by blocking responses containing private IP addresses
  • Deploy the validator in an isolated network segment with no access to sensitive internal resources
  • Implement request-time IP validation by resolving the hostname immediately before the request and validating the resolved IP
  • Consider running the validator behind a proxy that enforces destination restrictions
bash
# Configuration example - iptables rules to restrict outbound connections
# Block the validator user from connecting to localhost
iptables -A OUTPUT -m owner --uid-owner validator -d 127.0.0.0/8 -j DROP

# Block connections to private IP ranges
iptables -A OUTPUT -m owner --uid-owner validator -d 10.0.0.0/8 -j DROP
iptables -A OUTPUT -m owner --uid-owner validator -d 172.16.0.0/12 -j DROP
iptables -A OUTPUT -m owner --uid-owner validator -d 192.168.0.0/16 -j DROP

# Block link-local and cloud metadata endpoints
iptables -A OUTPUT -m owner --uid-owner validator -d 169.254.0.0/16 -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/TechNu Html Checker

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:L/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • Fluid Attacks Advisory

  • GitHub Validator Repository
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS 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