Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-3184

CVE-2026-3184: util-linux Auth Bypass Vulnerability

CVE-2026-3184 is an authentication bypass flaw in util-linux's login utility that allows attackers to bypass PAM access controls through hostname manipulation. This article covers technical details, impact, and mitigation.

Published: April 10, 2026

CVE-2026-3184 Overview

A flaw was found in util-linux. Improper hostname canonicalization in the login(1) utility, when invoked with the -h option, can modify the supplied remote hostname before setting PAM_RHOST. A remote attacker could exploit this by providing a specially crafted hostname, potentially bypassing host-based Pluggable Authentication Modules (PAM) access control rules that rely on fully qualified domain names. This could lead to unauthorized access.

Critical Impact

This vulnerability allows attackers to bypass PAM-based host access controls by exploiting improper hostname validation, potentially enabling unauthorized access to protected systems.

Affected Products

  • util-linux (affected versions not specified)

Discovery Timeline

  • 2026-04-03 - CVE CVE-2026-3184 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-3184

Vulnerability Analysis

This vulnerability (CWE-289: Authentication Bypass by Alternate Name) stems from improper hostname canonicalization in the util-linux login(1) utility. When an administrator configures PAM modules to restrict access based on hostnames (typically using pam_access or similar modules), the system expects to receive the authentic fully qualified domain name (FQDN) of the connecting host.

However, when login is invoked with the -h option to specify a remote hostname, the utility performs canonicalization operations that can alter the hostname before it is passed to PAM via the PAM_RHOST item. This creates a mismatch between what PAM expects and what it receives, allowing an attacker to craft hostnames that bypass access control lists while still appearing legitimate.

The attack requires specific network conditions and relies on the target system using hostname-based PAM access controls, which limits the attack surface. However, in environments where such controls are the primary authentication mechanism, this vulnerability could enable complete bypass of host-based restrictions.

Root Cause

The root cause lies in the hostname processing logic within the login(1) utility. When processing the -h flag argument, the utility performs canonicalization that may truncate, modify, or otherwise transform the provided hostname. This transformation occurs before the hostname is set as PAM_RHOST, meaning PAM modules receive an altered version of the original hostname. If PAM access rules are configured to allow or deny specific FQDNs, an attacker can craft input that canonicalizes to an allowed hostname while originating from a different source.

Attack Vector

The attack vector is network-based with high complexity requirements. An attacker must:

  1. Identify a target system using hostname-based PAM access controls
  2. Determine the allowed hostnames in the PAM configuration
  3. Craft a specially formatted hostname that will canonicalize to match an allowed entry
  4. Connect to the target system through a service that invokes login -h with attacker-controlled hostname data

The vulnerability exploits the mismatch between the attacker-supplied hostname and the canonicalized version that PAM evaluates. For example, services like telnetd or rlogind that use login -h to record remote hostnames could be potential attack surfaces. The attacker provides a crafted hostname string that, after canonicalization, matches an entry in the PAM access control list, thereby gaining unauthorized access.

Detection Methods for CVE-2026-3184

Indicators of Compromise

  • Login attempts with unusually formatted or malformed hostnames in authentication logs
  • Discrepancies between DNS-resolved hostnames and PAM_RHOST values recorded in logs
  • Successful authentications from hosts that should be blocked by PAM access rules
  • Authentication entries with truncated or altered hostname strings compared to source IP reverse DNS

Detection Strategies

  • Monitor /var/log/secure and /var/log/auth.log for login events with suspicious hostname patterns
  • Implement correlation rules to compare PAM_RHOST values against known allowed hostnames and reverse DNS lookups
  • Configure PAM auditing to log detailed authentication context including raw and processed hostname values
  • Deploy network intrusion detection rules to identify crafted hostname patterns in authentication protocols

Monitoring Recommendations

  • Enable verbose PAM logging to capture full authentication context including hostname processing
  • Configure SIEM rules to alert on hostname mismatches between expected and actual values
  • Implement baseline monitoring for remote login patterns to detect anomalous access sources
  • Review PAM access control configurations to identify rules that rely solely on hostname-based restrictions

How to Mitigate CVE-2026-3184

Immediate Actions Required

  • Review PAM configurations for modules using hostname-based access controls (pam_access, etc.)
  • Consider supplementing hostname-based restrictions with IP-based controls where possible
  • Enable enhanced logging for authentication events to detect potential exploitation attempts
  • Restrict or disable remote login services that invoke login -h until patches are applied

Patch Information

Security updates are expected from util-linux maintainers and downstream Linux distributions. Organizations should monitor the Red Hat CVE-2026-3184 Advisory and Red Hat Bug Report #2442570 for patch availability and apply updates as soon as they become available through official distribution channels.

Workarounds

  • Migrate from hostname-based PAM access controls to IP-based restrictions where feasible
  • Implement additional authentication layers (multi-factor authentication) that do not rely on hostname validation
  • Use firewall rules at the network level to enforce host restrictions independently of PAM
  • Consider disabling the -h option processing in login if not required in your environment
bash
# Example: Supplement hostname-based PAM rules with IP restrictions in /etc/security/access.conf
# Instead of relying solely on hostnames:
# + : admin : trusted.example.com
# Use IP-based restrictions:
+ : admin : 192.168.1.0/24
- : ALL : ALL

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechUtil Linux

  • SeverityLOW

  • CVSS Score3.7

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-289
  • Technical References
  • Red Hat CVE-2026-3184 Advisory

  • Red Hat Bug Report #2442570
  • Related CVEs
  • CVE-2026-27456: util-linux Privilege Escalation Flaw

  • CVE-2022-0563: Util-linux Privilege Escalation Flaw

  • CVE-2021-3995: Kernel Util-linux DOS 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