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

CVE-2025-59088: kdcproxy SSRF Vulnerability

CVE-2025-59088 is a server-side request forgery flaw in kdcproxy that allows attackers to probe internal networks and exfiltrate data through DNS manipulation. This article covers technical details, impact, and mitigation.

Published: April 29, 2026

CVE-2025-59088 Overview

CVE-2025-59088 is a Server-Side Request Forgery (SSRF) vulnerability in kdcproxy, a proxy application for Kerberos Key Distribution Center (KDC) communications. When kdcproxy receives a request for a realm without configured server addresses, it defaults to querying DNS SRV records matching the requested realm name. This behavior enables attackers to craft malicious requests that force the proxy to query attacker-controlled DNS zones, potentially allowing internal network reconnaissance, port scanning, and data exfiltration.

Critical Impact

This SSRF vulnerability allows unauthenticated attackers to probe internal network topology, bypass firewall rules, perform port scanning against internal hosts, and potentially exfiltrate sensitive data through DNS-based covert channels.

Affected Products

  • kdcproxy (all versions with default use_dns configuration)
  • Red Hat Enterprise Linux distributions shipping affected kdcproxy versions
  • Systems using kdcproxy without explicit use_dns=false configuration

Discovery Timeline

  • 2025-11-12 - CVE-2025-59088 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-59088

Vulnerability Analysis

The vulnerability stems from kdcproxy's default DNS lookup behavior when handling Kerberos authentication requests. When a client requests a realm that is not explicitly configured in kdcproxy's configuration file, the proxy automatically performs DNS SRV record lookups to discover KDC servers for that realm. This design assumes that DNS responses are trustworthy, which creates an exploitable condition when attackers can control the DNS zone for a crafted realm name.

The SSRF condition allows attackers to manipulate kdcproxy into making outbound connections to arbitrary hosts and ports specified in malicious SRV records. Since kdcproxy executes within the network perimeter, these connections can target internal IP addresses (including 127.0.0.1 and RFC 1918 ranges) that would otherwise be inaccessible from external networks. The vulnerability is classified under CWE-918 (Server-Side Request Forgery).

Root Cause

The root cause is the implicit trust placed in DNS SRV record responses combined with the default-enabled DNS lookup functionality. When the use_dns setting is not explicitly set to false, kdcproxy will automatically query DNS for any realm name, treating the realm string as a DNS zone name without validation. This allows attackers to specify arbitrary realm names corresponding to DNS zones they control, where they have configured SRV records pointing to internal or sensitive network resources.

Attack Vector

An attacker can exploit this vulnerability by sending a Kerberos request through kdcproxy with a realm name that matches a DNS zone under their control. The attack flow proceeds as follows:

  1. The attacker registers a DNS zone (e.g., attacker.example.com) and creates SRV records for Kerberos services pointing to internal IP addresses and arbitrary ports
  2. The attacker sends a Kerberos request to kdcproxy specifying the realm ATTACKER.EXAMPLE.COM
  3. kdcproxy queries DNS for _kerberos._tcp.attacker.example.com and _kerberos._udp.attacker.example.com
  4. DNS returns SRV records pointing to internal targets (e.g., 127.0.0.1:6379 for Redis, 192.168.1.10:3306 for MySQL)
  5. kdcproxy attempts connections to these internal services
  6. Response timing and error messages reveal whether ports are open, enabling network mapping

This technique can be extended for data exfiltration by encoding sensitive information in DNS queries to attacker-controlled authoritative nameservers.

Detection Methods for CVE-2025-59088

Indicators of Compromise

  • Unusual DNS SRV queries originating from kdcproxy servers for unfamiliar or suspicious realm names
  • kdcproxy connection attempts to internal IP addresses (loopback, private ranges) or unexpected ports
  • High volume of DNS queries for Kerberos SRV records to external DNS zones
  • Error logs indicating connection failures to non-KDC services on unusual ports

Detection Strategies

  • Monitor DNS query logs for _kerberos._tcp.* and _kerberos._udp.* queries to domains outside your organization
  • Implement network segmentation monitoring to detect kdcproxy connections to unauthorized internal hosts
  • Deploy SIEM rules to correlate unusual realm names in Kerberos requests with subsequent DNS lookups
  • Use SentinelOne Singularity platform to detect anomalous network behavior from kdcproxy processes

Monitoring Recommendations

  • Enable verbose logging on kdcproxy to capture all realm requests and DNS lookups performed
  • Configure DNS monitoring to alert on SRV queries from kdcproxy hosts to external zones
  • Implement egress filtering alerts for kdcproxy attempting connections to internal service ports (databases, caches, management interfaces)
  • Review kdcproxy access logs for requests with realm names not matching your organization's Kerberos realms

How to Mitigate CVE-2025-59088

Immediate Actions Required

  • Set use_dns = false in kdcproxy configuration to disable automatic DNS discovery
  • Explicitly configure all legitimate Kerberos realms and their KDC server addresses in kdcproxy configuration
  • Implement network-level egress filtering to restrict kdcproxy outbound connections to known KDC servers only
  • Apply the latest security patches from Red Hat or upstream kdcproxy project

Patch Information

Red Hat has released multiple security advisories addressing this vulnerability. Organizations should apply the appropriate patch for their distribution:

  • Red Hat Security Advisory RHSA-2025:21138
  • Red Hat Security Advisory RHSA-2025:21139
  • Red Hat Security Advisory RHSA-2025:21140
  • Red Hat Security Advisory RHSA-2025:21141
  • Red Hat Security Advisory RHSA-2025:21142

Additional patch information and the upstream fix can be found in GitHub Pull Request #68. The Red Hat CVE Report for CVE-2025-59088 provides comprehensive guidance for affected Red Hat products.

Workarounds

  • Disable DNS-based KDC discovery by setting use_dns = false in the kdcproxy configuration file
  • Manually configure all required Kerberos realms with their associated KDC server addresses
  • Implement firewall rules restricting kdcproxy outbound connections to only authorized KDC servers on Kerberos ports (88/TCP, 88/UDP)
  • Deploy network segmentation to isolate kdcproxy from sensitive internal services
bash
# kdcproxy configuration example (/etc/kdcproxy/kdcproxy.conf)
[global]
use_dns = false

[EXAMPLE.COM]
kerberos = kerberos://kdc1.example.com:88 kerberos://kdc2.example.com:88

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechKrb5

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • Red Hat Security Advisory RHSA-2025:21138

  • Red Hat Security Advisory RHSA-2025:21139

  • Red Hat Security Advisory RHSA-2025:21140

  • Red Hat Security Advisory RHSA-2025:21141

  • Red Hat Security Advisory RHSA-2025:21142

  • Red Hat Security Advisory RHSA-2025:21448

  • Red Hat Security Advisory RHSA-2025:21748

  • Red Hat Security Advisory RHSA-2025:21806

  • Red Hat Security Advisory RHSA-2025:21818

  • Red Hat Security Advisory RHSA-2025:21819

  • Red Hat Security Advisory RHSA-2025:21820

  • Red Hat Security Advisory RHSA-2025:21821

  • Red Hat Security Advisory RHSA-2025:22982

  • Red Hat CVE Report CVE-2025-59088

  • Red Hat Bug Report #2393955

  • GitHub Pull Request #68
  • Latest CVEs
  • CVE-2026-8468: Elixir Plug Library DoS Vulnerability

  • CVE-2026-8295: simdjson Information Disclosure Vulnerability

  • CVE-2025-68421: Comarch ERP Optima Auth Bypass Vulnerability

  • CVE-2025-68420: Comarch ERP Optima Privilege Escalation
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