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-2024-37152

CVE-2024-37152: Argo CD Auth Bypass Vulnerability

CVE-2024-37152 is an authentication bypass flaw in Argoproj Argo CD that allows unauthorized access to sensitive settings via the /api/v1/settings endpoint. This article covers the technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2024-37152 Overview

CVE-2024-37152 is an authentication bypass vulnerability affecting Argo CD, a popular declarative GitOps continuous delivery tool for Kubernetes. The vulnerability allows unauthorized access to sensitive settings exposed by the /api/v1/settings endpoint without requiring authentication. While most sensitive settings are hidden, the passwordPattern configuration remains exposed, potentially leaking information about password policy requirements to unauthenticated attackers.

Critical Impact

Unauthenticated attackers can access the Argo CD settings API endpoint to retrieve sensitive configuration data including password patterns, which could facilitate targeted brute-force or credential stuffing attacks against Kubernetes deployment infrastructure.

Affected Products

  • Argo CD versions prior to 2.11.3
  • Argo CD versions prior to 2.10.12
  • Argo CD versions prior to 2.9.17

Discovery Timeline

  • 2024-06-06 - CVE-2024-37152 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2024-37152

Vulnerability Analysis

This vulnerability represents a missing authentication vulnerability (CWE-306) combined with improper authentication (CWE-287) in Argo CD's API server component. The /api/v1/settings endpoint was designed to expose certain application settings but failed to properly enforce authentication checks before returning sensitive configuration data.

The core issue lies in the settings endpoint returning the PasswordPattern field to unauthenticated requests. This pattern typically contains regex rules defining password complexity requirements (minimum length, required character classes, etc.). While this information alone may seem benign, it provides attackers with precise knowledge of the password policy, enabling more efficient targeted attacks against user accounts.

In Kubernetes environments where Argo CD manages critical deployment pipelines, this information disclosure could serve as reconnaissance for subsequent attacks against the GitOps infrastructure.

Root Cause

The root cause is a missing authentication check on the /api/v1/settings endpoint in the Argo CD server component. The server/settings/settings.go file was returning the PasswordPattern field as part of the settings response without verifying the caller was authenticated. This represents a failure to apply the principle of least privilege, where even seemingly non-critical configuration data should require authentication to access.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker with network access to the Argo CD API server can directly query the settings endpoint to retrieve exposed configuration data:

  1. Attacker identifies an exposed Argo CD instance (typically accessible on port 443 or 8080)
  2. Attacker sends an unauthenticated HTTP GET request to /api/v1/settings
  3. Server responds with settings data including the passwordPattern configuration
  4. Attacker uses the password pattern information to craft targeted password attacks
go
// Vulnerable code - PasswordPattern exposed without authentication
 		UserLoginsDisabled:        userLoginsDisabled,
 		KustomizeVersions:         kustomizeVersions,
 		UiCssURL:                  argoCDSettings.UiCssURL,
-		PasswordPattern:           argoCDSettings.PasswordPattern,
 		TrackingMethod:            trackingMethod,
 		ExecEnabled:               argoCDSettings.ExecEnabled,
 		AppsInAnyNamespaceEnabled: s.appsInAnyNamespaceEnabled,

Source: GitHub Commit 256d90178b11b04bc8174d08d7b663a2a7b1771b

The patch removes the PasswordPattern field from the unauthenticated settings response, preventing information disclosure.

Detection Methods for CVE-2024-37152

Indicators of Compromise

  • Unusual or repeated unauthenticated requests to /api/v1/settings endpoint in Argo CD access logs
  • HTTP requests to the settings endpoint from unexpected IP addresses or geographic locations
  • Sudden increase in failed authentication attempts following settings endpoint access
  • Automated scanning tools probing Argo CD API endpoints

Detection Strategies

  • Monitor Argo CD server access logs for unauthenticated requests to /api/v1/settings
  • Implement network traffic analysis to detect reconnaissance activity against Argo CD instances
  • Deploy web application firewall (WAF) rules to alert on suspicious API access patterns
  • Configure SIEM rules to correlate settings endpoint access with subsequent authentication failures

Monitoring Recommendations

  • Enable detailed audit logging on Argo CD API server components
  • Implement rate limiting and anomaly detection for unauthenticated API endpoints
  • Set up alerts for access to settings endpoints from external networks
  • Review Argo CD access logs regularly for unusual patterns or unauthorized access attempts

How to Mitigate CVE-2024-37152

Immediate Actions Required

  • Upgrade Argo CD to patched versions 2.11.3, 2.10.12, or 2.9.17 immediately
  • Restrict network access to Argo CD API endpoints using network policies or firewall rules
  • Review access logs for evidence of exploitation prior to patching
  • Audit existing user accounts and consider password rotation if exploitation is suspected

Patch Information

The vulnerability is fixed in Argo CD versions 2.11.3, 2.10.12, and 2.9.17. Organizations should upgrade to one of these patched versions based on their current deployment branch. The fix removes the PasswordPattern field from the unauthenticated settings response. Review the GitHub Security Advisory GHSA-87p9-x75h-p4j2 for additional details and the security patch commit for technical implementation.

Workarounds

  • Implement network-level access controls to restrict access to Argo CD API endpoints to trusted networks only
  • Deploy a reverse proxy with authentication requirements in front of the Argo CD server
  • Use Kubernetes NetworkPolicies to limit which pods can communicate with Argo CD services
  • Consider temporarily disabling external access to Argo CD until patching can be completed
bash
# Example: Kubernetes NetworkPolicy to restrict Argo CD access
kubectl apply -f - <<EOF
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
  name: argocd-server-network-policy
  namespace: argocd
spec:
  podSelector:
    matchLabels:
      app.kubernetes.io/name: argocd-server
  policyTypes:
  - Ingress
  ingress:
  - from:
    - namespaceSelector:
        matchLabels:
          trusted: "true"
    ports:
    - protocol: TCP
      port: 8080
EOF

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechArgo Cd

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability73.41%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-287

  • CWE-306
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory GHSA-87p9-x75h-p4j2
  • Related CVEs
  • CVE-2025-55190: Argo CD Information Disclosure Flaw

  • CVE-2025-47933: Argo CD XSS Vulnerability

  • CVE-2024-31989: Argo CD Privilege Escalation Vulnerability

  • CVE-2024-22424: Argoproj Argo CD CSRF 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