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

CVE-2026-42194: Admidio SSRF Vulnerability

CVE-2026-42194 is an SSRF flaw in Admidio that exploits DNS rebinding to bypass IP validation and redirect requests to internal systems. This article covers the technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-42194 Overview

CVE-2026-42194 is a Server-Side Request Forgery (SSRF) vulnerability in Admidio, an open-source user management solution. The flaw exists in fetch_metadata.php prior to version 5.0.9. An incomplete SSRF fix validates the resolved IP address but then passes the original hostname-based URL to curl_init(). This gap creates a DNS rebinding Time-of-Check Time-of-Use (TOCTOU) window. Authenticated attackers with high privileges can redirect outbound requests to internal IP addresses. The issue is tracked under [CWE-918] and patched in Admidio 5.0.9.

Critical Impact

Successful exploitation allows attackers to bypass SSRF protections and reach internal network resources, exposing confidential data on adjacent systems.

Affected Products

  • Admidio versions prior to 5.0.9
  • Admidio fetch_metadata.php component
  • Self-hosted Admidio installations exposed to authenticated users

Discovery Timeline

  • 2026-05-07 - CVE-2026-42194 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-42194

Vulnerability Analysis

The vulnerability resides in Admidio's metadata fetching logic in fetch_metadata.php. The application attempts to prevent SSRF by resolving a user-supplied URL's hostname and validating that the resulting IP address is not internal. After validation, the code passes the original hostname-based URL — not the validated IP — to curl_init(). Because curl performs its own DNS resolution at request time, an attacker-controlled DNS server can return a public IP during validation and an internal IP during the actual fetch. This race condition between check and use defines a classic TOCTOU pattern applied to DNS resolution, commonly called DNS rebinding.

Root Cause

The root cause is incomplete SSRF mitigation. The validation step and the request execution step rely on independent DNS lookups. The fix in Admidio 5.0.9 closes the window by ensuring the validated IP is the address actually contacted, rather than re-resolving the hostname during the HTTP request.

Attack Vector

An authenticated attacker hosts a domain backed by a DNS server returning short-TTL responses. The attacker submits a URL referencing that domain to the metadata fetch endpoint. The first DNS query returns a benign public IP, passing the SSRF allow-list check. The second query, issued by curl, returns an internal IP such as 127.0.0.1 or a cloud metadata address like 169.254.169.254. Admidio then issues the HTTP request against the internal target and returns response data to the attacker.

No verified exploit code is published. Refer to the GitHub Security Advisory GHSA-hcjj-chvw-fmw9 for additional technical context.

Detection Methods for CVE-2026-42194

Indicators of Compromise

  • Outbound HTTP requests from the Admidio web server to RFC1918 ranges (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) or link-local 169.254.0.0/16.
  • Repeated DNS queries from the Admidio host to the same external domain with very low TTL values.
  • Unexpected entries in fetch_metadata.php access logs referencing attacker-controlled hostnames.

Detection Strategies

  • Inspect web server and PHP-FPM logs for invocations of fetch_metadata.php followed by internal-bound curl requests.
  • Correlate DNS resolver logs with subsequent egress traffic from the application server to identify rebinding patterns.
  • Alert on any successful HTTP responses retrieved by Admidio from cloud metadata endpoints.

Monitoring Recommendations

  • Forward web, DNS, and egress firewall logs to a centralized analytics platform for correlation.
  • Track authenticated user actions that trigger metadata fetches and baseline expected destinations.
  • Monitor for short-TTL DNS responses originating from untrusted domains during application-driven lookups.

How to Mitigate CVE-2026-42194

Immediate Actions Required

  • Upgrade Admidio to version 5.0.9 or later, where the SSRF fix resolves the hostname once and reuses the validated IP.
  • Restrict access to authenticated administrative roles able to invoke fetch_metadata.php until patching completes.
  • Block egress traffic from the Admidio host to internal management ranges and cloud metadata endpoints.

Patch Information

The vendor released the fix in Admidio 5.0.9. Review the Admidio 5.0.9 Release Notes and the GitHub Security Advisory GHSA-hcjj-chvw-fmw9 for full remediation details.

Workarounds

  • Place Admidio behind an egress proxy that enforces destination allow-lists at the network layer.
  • Configure host firewall rules to deny outbound connections to RFC1918 and link-local addresses from the web server.
  • Disable or remove the metadata fetch feature if it is not required by the deployment.
bash
# Example iptables rules to block SSRF egress to internal ranges
iptables -A OUTPUT -m owner --uid-owner www-data -d 10.0.0.0/8 -j REJECT
iptables -A OUTPUT -m owner --uid-owner www-data -d 172.16.0.0/12 -j REJECT
iptables -A OUTPUT -m owner --uid-owner www-data -d 192.168.0.0/16 -j REJECT
iptables -A OUTPUT -m owner --uid-owner www-data -d 169.254.0.0/16 -j REJECT
iptables -A OUTPUT -m owner --uid-owner www-data -d 127.0.0.0/8 -j REJECT

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechAdmidio

  • SeverityMEDIUM

  • CVSS Score6.8

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Admidio Release Note

  • GitHub Security Advisory GHSA-hcjj-chvw-fmw9
  • Related CVEs
  • CVE-2026-32812: Admidio SSRF Vulnerability

  • CVE-2026-41671: Admidio OIDC Auth Bypass Vulnerability

  • CVE-2026-41670: Admidio SAML Auth Bypass Vulnerability

  • CVE-2026-41669: Admidio SAML Auth Bypass 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